Files
Cpp/hello.cpp
2025-11-30 01:51:19 +03:00

10 lines
111 B
C++

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