about summary refs log tree commit diff stats
path: root/dev/c/src/hello/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev/c/src/hello/hello.c')
-rw-r--r--dev/c/src/hello/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/dev/c/src/hello/hello.c b/dev/c/src/hello/hello.c
new file mode 100644
index 0000000..df66493
--- /dev/null
+++ b/dev/c/src/hello/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+    printf("hello World!");
+    return 0;
+}