RVBTCC/demo/hello.c
2024-11-15 21:29:39 +08:00

6 lines
107 B
C

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