RVBTCC/demo/hello.c
2024-12-07 12:24:00 +08:00

5 lines
86 B
C

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