v / vlib / toml / tests / testdata / json_test.toml
25 lines · 17 sloc · 251 bytes · 5541ec8670fb2c95a70f14d54a918651df9d550d
Raw
1
2v = true
3
4animal = { type.name = "pug" }
5
6inline = { "a" = 4, "b.c" = 6, b.c = 7 }
7
8[db]
9t = true
10
11[ij]
12 [ij.a]
13 i = 1
14 j = 2
15
16 [ij.b]
17 i = "3"
18 j = "4"
19
20[fruit]
21apple.color = "red"
22apple.taste.sweet = true
23
24[fruit.apple.texture]
25smooth = true
26