test_c/c++/hello_world.cpp

10 lines
100 B
C++

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