blob: 5b081da6ccd919ccebc1693584a60ad1e987309c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
root {
teststring:string { "Hello World!" }
testint:int { 2 }
testvector:intvector { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 }
testbin:bin { a1b2c3d4e5f67890 }
testtable:table {
major:int { 3 }
minor:int { 4 }
patch:int { 7 }
}
testarray:array {
"string 1",
"string 2",
"string 3"
}
}
|