summaryrefslogtreecommitdiffstats
path: root/skeletons/c.erb
diff options
context:
space:
mode:
Diffstat (limited to 'skeletons/c.erb')
-rw-r--r--skeletons/c.erb9
1 files changed, 9 insertions, 0 deletions
diff --git a/skeletons/c.erb b/skeletons/c.erb
new file mode 100644
index 0000000..e3df5f4
--- /dev/null
+++ b/skeletons/c.erb
@@ -0,0 +1,9 @@
+<%= header 'c.hdr' %>
+
+#include <stdio.h>
+
+int hello() {
+ printf ("hello world");
+ return 0;
+}
+