hello_world.cpp revision d6dd2fcf84a73288fbdc5c207ec28ee877a19c9b
1#include <iostream>
2using namespace std;
3
4int  main()
5{
6    cout << "Hello World" << endl;
7    return 0;
8}
9