RVBTCC/demo/hello.c

5 lines
86 B
C
Raw Normal View History

2024-12-07 04:24:00 +00:00
int printf(char* format, ...);
2024-11-15 13:29:39 +00:00
int main() {
printf("hello world %d\n", 42);
}