final tests

This commit is contained in:
Yaossg 2025-05-05 16:20:27 +08:00
parent a18612f583
commit a84655600d
34 changed files with 309 additions and 32 deletions

10
test/loop/for.c Normal file
View file

@ -0,0 +1,10 @@
int printf(char* format, ...);
int main() {
int i = 0;
for (i = 0; i < 5; i++) {
printf("%d ", i);
}
printf("\n");
return 0;
}