blob: ce84ab6b91c86b362f207d8a01d8ce9b9df0e5b4 [file] [log] [blame]
Mustafa Senol Cosar09c1f372018-04-04 15:25:28 +03001const 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}