13 lines
305 B
TOML
13 lines
305 B
TOML
# full-line comment
|
|
|
|
[main] # appended comment
|
|
key = "val"
|
|
keyc = "val" # comment appended to key/value line
|
|
"keyq" = "val"
|
|
keycom = "# value with hash"
|
|
|
|
[fancy]
|
|
arr = [ "val1", "val2", "val3" ]
|
|
arrc = [ "val1", "val2", "val3", ] # comment appended to array line
|
|
arrcom = [ "# one", "##two", "###three" ]
|