【初始提交】

This commit is contained in:
wdp
2024-12-08 23:44:18 +08:00
commit a2eb47cc54
6 changed files with 156 additions and 0 deletions

6
app/main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int32_t main(int32_t argc, char** argv) {
std::cout << "Hello, World!" << std::endl;
return 0;
}