commit 3c5b955e3180645dfb8fb764243c46bb8651fd83 Author: matthias wagner Date: Thu Jul 13 21:12:36 2023 +0200 hello world diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f8305e7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +a.out \ No newline at end of file diff --git a/thor.c b/thor.c new file mode 100644 index 0000000..367e313 --- /dev/null +++ b/thor.c @@ -0,0 +1,8 @@ +#include + +// run using gcc thor.c && ./a.out + +int main(int argc, char **argv){ + printf("Hello, World!"); + return 0; +} \ No newline at end of file