RosettaCodeData/Task/Hello-world-Newbie/C++/hello-world-newbie.cpp

7 lines
111 B
C++
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
#include <iostream>
int main() {
using namespace std;
cout << "Hello, World!" << endl;
return 0;
}