summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/hello.c b/src/hello.c
new file mode 100644
index 0000000..fca997b
--- /dev/null
+++ b/src/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(){
+
+ printf("Hello world \n");
+
+ return 0;
+}