linuxkurs/beispiele/14/hello.c
2019-02-18 09:13:03 +01:00

5 lines
69 B
C

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