1st checkin

This commit is contained in:
Andre 2025-10-14 18:16:46 +02:00
commit efbedff59a
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.o
*.exe

6
hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main()
{
printf("\nHello World!\n");
}