aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-9/app/main.c
blob: d6cefc2ff2bec949b891bc2a22315d4f08df970b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//![0]
#include <lib.h>
#include <version.h>

#include <stdio.h>

int main()
{
    printf("Hello, world\n");
    printf("%s\n", get_string());
    printf("ProductVersion = %s\n", kProductVersion);
    return 0;
}
//![0]