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

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