1title = "TOML Marshal Testing"
2
3[basic]
4  bool = true
5  date = 1979-05-27T07:32:00Z
6  float = 123.4
7  int = 5000
8  string = "Bite me"
9  uint = 5001
10
11[basic_lists]
12  bools = [true,false,true]
13  dates = [1979-05-27T07:32:00Z,1980-05-27T07:32:00Z]
14  floats = [12.3,45.6,78.9]
15  ints = [8001,8001,8002]
16  strings = ["One","Two","Three"]
17  uints = [5002,5003]
18
19[basic_map]
20  one = "one"
21  two = "two"
22
23[subdoc]
24
25  [subdoc.first]
26    name = "First"
27
28  [subdoc.second]
29    name = "Second"
30
31[[subdoclist]]
32  name = "List.First"
33
34[[subdoclist]]
35  name = "List.Second"
36
37[[subdocptrs]]
38  name = "Second"
39