aboutsummaryrefslogtreecommitdiff
path: root/hello-world/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'hello-world/hello.c')
-rw-r--r--hello-world/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hello-world/hello.c b/hello-world/hello.c
new file mode 100644
index 0000000..05ce120
--- /dev/null
+++ b/hello-world/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main ()
+{
+ printf("Hello world!\n");
+ return 0;
+}