Wortsalat/Start_Windows/helloWorld.c

14 lines
145 B
C

/*
* test datei zum git test
* hofmann jonas
* 2025.10.14
*/
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0;
}