Added my own implementation of "Hello world" as an example.

This commit is contained in:
heinzel
2007-11-26 23:37:48 +00:00
commit 7fce74e667
11 changed files with 509 additions and 0 deletions

12
hello.c Normal file
View File

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