RVBTCC/demo/hello.c

5 lines
92 B
C
Raw Permalink Normal View History

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