...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/comment/tricky.toml

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/comment

     1[section]#attached comment
     2#[notsection]
     3one = "11"#cmt
     4two = "22#"
     5three = '#'
     6
     7four = """# no comment
     8# nor this
     9#also not comment"""#is_comment
    10
    11five = 5.5#66
    12six = 6#7
    138 = "eight"
    14#nine = 99
    15ten = 10e2#1
    16eleven = 1.11e1#23
    17
    18["hash#tag"]
    19"#!" = "hash bang"
    20arr3 = [ "#", '#', """###""" ]
    21arr4 = [ 1,# 9, 9,
    222#,9
    23,#9
    243#]
    25,4]
    26arr5 = [[[[#["#"],
    27["#"]]]]#]
    28]
    29tbl1 = { "#" = '}#'}#}}
    30
    31

View as plain text