RVBTCC/test/basic/hello.c

7 lines
102 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
2024-12-08 03:40:47 +00:00
int gi = 42;
2024-11-15 13:29:39 +00:00
int main() {
2024-12-08 03:40:47 +00:00
printf("hello world %d\n", gi);
2024-11-15 13:29:39 +00:00
}