Initial Commit
diff --git a/Makefile b/Makefile line changes: +5/-0 index 0000000..8c1c557 --- /dev/null +++ b/Makefile
@@ -0,0 +1,5 @@ +all: + cc hello.c -o hello + +clean: + -rm -f hello
diff --git a/hello.c b/hello.c line changes: +7/-0 index 0000000..66b5c2f --- /dev/null +++ b/hello.c
@@ -0,0 +1,7 @@ +#include <stdio.h> + +int main() +{ + printf("Hello!\n"); + return(0); +}