10 lines
177 B
TOML
10 lines
177 B
TOML
|
[fruit]
|
||
|
apple.color = "red"
|
||
|
apple.taste.sweet = true
|
||
|
|
||
|
# [fruit.apple] # INVALID
|
||
|
# [fruit.apple.taste] # INVALID
|
||
|
|
||
|
[fruit.apple.texture] # you can add sub-tables
|
||
|
smooth = true
|