diff options
Diffstat (limited to 'wk6/lect')
-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") |