blob: 5fa580652162df7fd3c32c50f96b2f3e90cbc85e [file] [log] [blame]
# https://github.com/toml-lang/toml
key_value="a.b=\"c\""
unicode="\\u1234"
unicode_long="\\u12345678"
true="true"
false="false"
multiline_literal="'''"
multiline="\"\"\""
integer="+1_2_3_4"
negative_integer="-1"
hex="0xde_ad"
oct="0o6"
bin="0b1"
float="-6_3.6e-05"
nan="nan"
inf="inf"
time="1979-05-27T07:32:00Z"
array="[1,2]"
table="[a]"
inline_table="a={1=2,3=4}"
array_table="[[a]]"