RosettaCodeData/Task/Hello-world-Newbie/C++/hello-world-newbie.cpp
2023-07-01 13:44:08 -04:00

6 lines
111 B
C++

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