summaryrefslogtreecommitdiff
path: root/std/encoding/testdata/comment.toml
blob: 6bc9be04587b93f5361cb4badbfbbaf6c63aef2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This is a full-line comment
str0 = 'value' # This is a comment at the end of a line
str1 = "# This is not a comment" # but this is
str2 = """ # this is not a comment!
A multiline string with a #
# this is also not a comment
""" # this is definitely a comment

str3 = '''
"# not a comment"
	# this is a real tab on purpose 
# not a comment
''' # comment

point0 = { x = 1, y = 2, str0 = "#not a comment", z = 3 } # comment
point1 = { x = 7, y = 8, z = 9, str0 = "#not a comment"} # comment

[deno] # this comment is fine
features = ["#secure by default", "supports typescript # not a comment"] # Comment caused Issue #7072
url = "https://deno.land/" # comment
is_not_node = true # comment

[toml] # Comment caused Issue #7072 (case 2)
name = "Tom's Obvious, Minimal Language"
objectives = [ # Comment
 "easy to read", # Comment
 "minimal config file", 
 "#not a comment" # comment
] # comment