unit test

This commit is contained in:
Yaossg 2024-12-07 14:13:34 +08:00
parent 98d5a1a3bc
commit 54db58d362
18 changed files with 64 additions and 9 deletions

5
test/hello.c Normal file
View file

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