RVBTCC/test/hello.c
2024-12-08 11:40:47 +08:00

7 lines
102 B
C

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