]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/kr_exercises/ch1/s1.1/p6_hello_world/hello.c
feat(src/kr/ch1/s1.1/p6):Add hello world example
[BK-2023-05.git] / src / kr_exercises / ch1 / s1.1 / p6_hello_world / hello.c
1 #include <stdio.h>
2
3 main() {
4 printf("hello, world\n");
5 }