RVBTCC/demo/hello.c

6 lines
107 B
C
Raw Normal View History

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