diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 06:19:54 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 06:19:54 +0000 |
commit | 61b11deb11cf73c3164d9d76fc52470c881f62f3 (patch) | |
tree | 74d519643ae7212333e84b29321d0c5add487445 | |
parent | 084fcef0944fc1f0a3ba2713f452fca79d437ec6 (diff) |
Thu, May 2, 2024, 11:19 PM -07:00
-rw-r--r-- | wk6/lect/hello.c | 6 | ||||
-rw-r--r-- | wk6/lect/hello.py | 1 |
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") |