olibc/examples/hello.c

8 lines
102 B
C

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