summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-05-03 06:19:54 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-05-03 06:19:54 +0000
commit61b11deb11cf73c3164d9d76fc52470c881f62f3 (patch)
tree74d519643ae7212333e84b29321d0c5add487445
parent084fcef0944fc1f0a3ba2713f452fca79d437ec6 (diff)
Thu, May 2, 2024, 11:19 PM -07:00
-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")