toaruos/apps/hello.c

7 lines
93 B
C
Raw Normal View History

2018-02-25 19:07:56 +09:00
#include <stdio.h>
2018-02-25 14:13:54 +09:00
int main(int argc, char * argv[]) {
2018-02-25 19:07:56 +09:00
puts("Hello, world.");
2018-02-25 14:13:54 +09:00
return 0;
}