Files
hello-world/c/c++.cpp
2010-08-06 11:09:09 +08:00

9 lines
89 B
C++

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