aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-1/app/main.c
blob: 3f3560d258e3ff2e8ec56242afd96cd217c59aca (plain)
1
2
3
4
5
6
7
8
9
//! [0]
#include <stdio.h>

int main()
{
    printf("Hello, world\n");
    return 0;
}
//! [0]