summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-09 15:15:52 -0700
committermo khan <mo@mokhan.ca>2014-02-09 15:15:52 -0700
commit55468623670a91bedb3164c10f5dc874e76be44f (patch)
tree8ac8c7ff6aa830273be13b9f4651b170069bf575
create hello world program.
-rw-r--r--hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..e001c72
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,6 @@
+#include "stdio.h"
+
+int main()
+{
+ printf("hello, world\n");
+}