Files
hello/hello.c

13 lines
158 B
C

/*
* hello.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
int main(int argc, char** argv) {
printf("Hello World.\n");
exit(EX_OK);
}