diff options
| -rw-r--r-- | code/intro/hello.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/code/intro/hello.c b/code/intro/hello.c new file mode 100644 index 0000000..b9dbb17 --- /dev/null +++ b/code/intro/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main() +{ + printf("hello, world\n"); + return 0; +} |
