hello world

This commit is contained in:
bronku 2025-10-12 21:32:39 +02:00
commit bc84bde277
4 changed files with 34 additions and 0 deletions

7
main.c Normal file
View file

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