diff --git a/hello.c b/hello.c deleted file mode 100644 index 12121ff1e9c4e38ee58144683945245fabe5a65d..0000000000000000000000000000000000000000 --- a/hello.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <stdio.h> -#include <string.h> -#include <unistd.h> - -int main() { - puts("Hello World"); - printf("The answer is %d\n",42); - putchar('\n'); - fprintf(stdout,"Yes\n"); - - write(1,"Yes!",strlen("Yes!")); - return 42; -}