diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-07-12 23:33:56 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-07-12 23:33:56 +0200 |
| commit | 77f19e4a89d8dec97930c5e237139734c5fb3365 (patch) | |
| tree | a79ae400ae10c7bda244211b14162c90cc20ee1b | |
init
| -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; +} |
