Informatik2_Pr/helloworld.c
2025-03-28 12:10:57 +01:00

6 lines
81 B
C

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