aboutsummaryrefslogtreecommitdiffstats
path: root/hello-world.c
diff options
context:
space:
mode:
Diffstat (limited to 'hello-world.c')
-rw-r--r--hello-world.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hello-world.c b/hello-world.c
new file mode 100644
index 0000000..a3a0138
--- /dev/null
+++ b/hello-world.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World");
+ getchar();
+}