mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
12 lines
305 B
TOML
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 ] |