diff options
Diffstat (limited to 'wk1/hello.c')
-rw-r--r-- | wk1/hello.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wk1/hello.c b/wk1/hello.c new file mode 100644 index 0000000..927f7b6 --- /dev/null +++ b/wk1/hello.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main(void) +{ + printf("hello, world\n"); +} |