ChatServer/main.cc

10 lines
142 B
C++
Raw Normal View History

2024-12-07 19:51:35 +08:00
#include <iostream>
using namespace std;
int main() {
cout << "hello world!" << endl;
2024-12-07 20:12:08 +08:00
cout << "hello too!" << endl;
2024-12-07 19:51:35 +08:00
return 0;
}