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