RosettaCodeData/Task/Hello-world-Newbie/C++/hello-world-newbie.cpp
2016-12-05 22:15:40 +01:00

6 lines
111 B
C++

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