This commit is contained in:
Jie
2025-01-03 17:59:36 +08:00
commit ff11038925
3 changed files with 92 additions and 0 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
cout << "hello world!" << endl;
return 0;
}