初始化仓库

This commit is contained in:
zw
2025-06-13 11:29:59 +08:00
commit 08b851951c
494 changed files with 184421 additions and 0 deletions

11
Linux_Hello/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <cstdio>
int main()
{
for (int i = 0; i < 100;i++) {
printf("hello from Linux_Hello!\n");
}
return 0;
}