summaryrefslogtreecommitdiff
path: root/ch1/hello.c
blob: b1ad9282d004dd9023e456a0fa2b51c0e6d2cf9f (plain) (blame)
1
2
3
4
5
6
7
8
#include<stdio.h>

main() {
    printf("hello, ");
    printf("world.");
    printf("\n");
}