test coverage

This commit is contained in:
Yaossg 2024-12-08 11:40:47 +08:00
parent 54db58d362
commit 3b95608233
23 changed files with 199 additions and 50 deletions

View file

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