ChatServer/main.cc
2024-12-07 20:12:08 +08:00

10 lines
142 B
C++

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