colored demo

This commit is contained in:
Yaossg 2025-03-10 00:46:24 +08:00
parent 1bcff515b7
commit e425464aab
5 changed files with 183 additions and 35 deletions

9
demo/for.c Normal file
View file

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