river/example/hello_world/main.c
2020-04-27 16:59:07 +08:00

6 lines
78 B
C

#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}