This commit is contained in:
coolcatka 2023-08-11 22:34:20 +02:00
commit f35f825c43
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/hello

7
hello.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}