This commit is contained in:
Steven Hobs
2026-03-04 12:45:47 +08:00
commit d1f8114c3d
5 changed files with 247 additions and 0 deletions

8
src/hello.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
for (int i = 0; i <= 10; i++) {
printf("i=%d\n", i);
}
return 0;
}