summaryrefslogtreecommitdiff
path: root/wk6/pset
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-05-04 07:09:34 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-05-04 07:09:34 +0000
commit94bba2abfb9cceb429fcf1aeeaabe085e21bbcfb (patch)
tree8af1e771164ca51c5f075e8f790f1de54b08d919 /wk6/pset
parent3380eff855a09aea27be65e6b2d69e226fbae3e9 (diff)
Sat, May 4, 2024, 12:09 AM -07:00
Diffstat (limited to 'wk6/pset')
-rw-r--r--wk6/pset/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/wk6/pset/hello.c b/wk6/pset/hello.c
new file mode 100644
index 0000000..927f7b6
--- /dev/null
+++ b/wk6/pset/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(void)
+{
+ printf("hello, world\n");
+}