Files
C_CPP_katas/hello_world/hello_world.c
2019-11-01 21:40:13 +01:00

8 lines
113 B
C

#include <stdio.h>
int main() {
/* my first program in C */
printf("Hello, World! \n");
return 0;
}