summaryrefslogtreecommitdiff
path: root/wk6/lect
diff options
context:
space:
mode:
Diffstat (limited to 'wk6/lect')
-rw-r--r--wk6/lect/hello.c6
-rw-r--r--wk6/lect/hello.py1
2 files changed, 7 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");
+}
diff --git a/wk6/lect/hello.py b/wk6/lect/hello.py
new file mode 100644
index 0000000..9f69d32
--- /dev/null
+++ b/wk6/lect/hello.py
@@ -0,0 +1 @@
+print("hello, world")