ChatServer/main.cc

9 lines
108 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;
return 0;
}