Files
linguist/samples/C++/hello.cpp
2012-07-23 15:52:49 -05:00

9 lines
93 B
C++

#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
}