From f35f825c4347f9a79fcd9aafc768596194dd72d1 Mon Sep 17 00:00:00 2001 From: coolcatka Date: Fri, 11 Aug 2023 22:34:20 +0200 Subject: [PATCH] init --- .gitignore | 1 + hello.c | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 hello.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e92569d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/hello diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..ab0200f --- /dev/null +++ b/hello.c @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + printf("Hello, world!\n"); + return 0; +}