Daniel Ziltener
91ea498688
git-subtree-dir: tomlc99 git-subtree-mainline:f2ccebdd2d
git-subtree-split:5221b3d3d6
8 lines
225 B
TOML
8 lines
225 B
TOML
# THE FOLLOWING IS INVALID
|
|
|
|
# This defines the value of fruit.apple to be an integer.
|
|
fruit.apple = 1
|
|
|
|
# But then this treats fruit.apple like it's a table.
|
|
# You can't turn an integer into a table.
|
|
fruit.apple.smooth = true
|