This commit is contained in:
Daniel Zwanzig 2025-03-28 12:10:57 +01:00
commit c86d5a9922

6
helloworld.c Normal file
View File

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