RVBTCC/demo/hello.c

5 lines
92 B
C

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