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