This commit is contained in:
Yaossg 2024-11-15 21:29:39 +08:00
parent 917ba6b619
commit 41a17c3428
2 changed files with 11 additions and 0 deletions

6
demo/hello.c Normal file
View file

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