commit f35f825c4347f9a79fcd9aafc768596194dd72d1 Author: coolcatka Date: Fri Aug 11 22:34:20 2023 +0200 init 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; +}