From 61b11deb11cf73c3164d9d76fc52470c881f62f3 Mon Sep 17 00:00:00 2001
From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com>
Date: Fri, 3 May 2024 06:19:54 +0000
Subject: Thu, May 2, 2024, 11:19 PM -07:00

---
 wk6/lect/hello.c  | 6 ++++++
 wk6/lect/hello.py | 1 +
 2 files changed, 7 insertions(+)
 create mode 100644 wk6/lect/hello.c
 create mode 100644 wk6/lect/hello.py

(limited to 'wk6')

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")
-- 
cgit v1.2.3