std/toml/testdata/arrays.toml
2023-07-30 18:23:34 +09:00

12 lines
305 B
TOML

[arrays]
data = [ ["gamma", "delta"], [1, 2] ] # comment after an array caused issue #7072
# Line breaks are OK when inside arrays
hosts = [
"alpha",
"omega"
] # comment
profiles = [ { name = "John", "john@example.com" = true }, { name = "Doe", "doe@example.com" = true }, ]
floats = [ 0.1, -1.25 ]