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

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

2023-07-01 11:58:00 -04:00
#include <iostream>
int main() {
using namespace std;
cout << "Hello, World!" << endl;
return 0;
}