Files
cpp_playground/GCC Intro/hello.cpp
2022-01-01 21:37:36 +01:00

8 lines
107 B
C++

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