mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 01:01:33 +00:00
23 lines
388 B
Plaintext
23 lines
388 B
Plaintext
# 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]]"
|