1const string foo = "bar"
2
3struct a_struct {
4  1: bool im_true,
5  2: bool im_false,
6  3: i8 a_bite,
7  4: i16 integer16,
8  5: i32 integer32,
9  6: i64 integer64,
10  7: double double_precision,
11  8: string some_characters,
12  9: string zomg_unicode,
13  10: bool what_who,
14}
15
16service AService {
17  i32 a_procedure(1: i32 arg)
18}
19