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