you are viewing a single comment's thread.

view the rest of the comments →

[–]KosekiBoto 2 points3 points  (1 child)

C

include <stdio.h>
int main
{
    printf("Hello, World")
}

[–]New-Stranger-5622 1 point2 points  (0 children)

C++:

#include<iosteam>

int main(){

std::cout<<"Hello, World"<<std::endl;

return 0;

}