xref: /aosp_15_r20/external/AFLplusplus/dictionaries/toml.dict (revision 08b48e0b10e97b33e7b60c5b6e2243bd915777f2)
1# https://github.com/toml-lang/toml
2
3key_value="a.b=\"c\""
4unicode="\\u1234"
5unicode_long="\\u12345678"
6true="true"
7false="false"
8multiline_literal="'''"
9multiline="\"\"\""
10integer="+1_2_3_4"
11negative_integer="-1"
12hex="0xde_ad"
13oct="0o6"
14bin="0b1"
15float="-6_3.6e-05"
16nan="nan"
17inf="inf"
18time="1979-05-27T07:32:00Z"
19array="[1,2]"
20table="[a]"
21inline_table="a={1=2,3=4}"
22array_table="[[a]]"
23