From 3c5b955e3180645dfb8fb764243c46bb8651fd83 Mon Sep 17 00:00:00 2001 From: matthias wagner Date: Thu, 13 Jul 2023 21:12:36 +0200 Subject: [PATCH] hello world --- .gitignore | 1 + thor.c | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 thor.c 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