git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/internal/toml-test/tests/valid/array/array.toml (about)

     1  ints = [1, 2, 3, ]
     2  floats = [1.1, 2.1, 3.1]
     3  strings = ["a", "b", "c"]
     4  dates = [
     5    1987-07-05T17:45:00Z,
     6    1979-05-27T07:32:00Z,
     7    2006-06-01T11:00:00Z,
     8  ]
     9  comments = [
    10           1,
    11           2, #this is ok
    12  ]