tomcat/test.toml

13 lines
305 B
TOML
Raw Normal View History

2022-11-06 21:34:54 +00:00
# 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" ]