cpp_playground/GCC Intro/hello.cpp

8 lines
107 B
C++
Raw Permalink Normal View History

2022-01-01 20:37:36 +00:00
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}