diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:09:34 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:09:34 +0000 |
commit | 94bba2abfb9cceb429fcf1aeeaabe085e21bbcfb (patch) | |
tree | 8af1e771164ca51c5f075e8f790f1de54b08d919 | |
parent | 3380eff855a09aea27be65e6b2d69e226fbae3e9 (diff) |
Sat, May 4, 2024, 12:09 AM -07:00
-rw-r--r-- | wk6/pset/hello.c | 6 |
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"); +} |