diff options
Diffstat (limited to 'build/c/src/main.c')
-rw-r--r-- | build/c/src/main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/c/src/main.c b/build/c/src/main.c new file mode 100644 index 0000000..f8d8fb7 --- /dev/null +++ b/build/c/src/main.c @@ -0,0 +1,10 @@ +#include <stdio.h> +#include <stdlib.h> + +int +main () +{ + printf ("Hello World!\n"); + + return EXIT_SUCCESS; +} |