test subdirectory

This commit is contained in:
Yaossg 2024-12-24 09:55:26 +08:00
parent b4dbce76cf
commit bf7f456967
31 changed files with 19 additions and 13 deletions

7
test/old/hello.c Normal file
View file

@ -0,0 +1,7 @@
int printf(char* format, ...);
int gi = 42;
int main() {
printf("hello world %d\n", gi);
}