first commit!

This commit is contained in:
2025-02-06 12:54:34 +02:00
commit 37f9a3d138
24 changed files with 693 additions and 0 deletions

7
helloworld.c Normal file
View File

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