river/example/hello_world/main.cpp
2020-04-27 16:59:07 +08:00

7 lines
106 B
C++

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