mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-18 02:08:09 +08:00
35 lines
532 B
TOML
35 lines
532 B
TOML
points = [ { x = 1, y = 2, z = 3 },
|
|
{ x = 7, y = 8, z = 9 },
|
|
{ x = 2, y = 4, z = 8 } ]
|
|
|
|
[[products]]
|
|
name = "Hammer"
|
|
sku = 738594937
|
|
|
|
[[products]] # empty table within the array
|
|
|
|
[[products]]
|
|
name = "Nail"
|
|
sku = 284758393
|
|
|
|
color = "gray"
|
|
|
|
[[fruits]]
|
|
name = "apple"
|
|
|
|
[fruits.physical] # subtable
|
|
color = "red"
|
|
shape = "round"
|
|
|
|
[[fruits.varieties]] # nested array of tables
|
|
name = "red delicious"
|
|
|
|
[[fruits.varieties]]
|
|
name = "granny smith"
|
|
|
|
[[fruits]]
|
|
name = "banana"
|
|
|
|
[[fruits.varieties]]
|
|
name = "plantain"
|