blob: d146ebd5f6c86ff2390a8ed95f74b2b58fbab725 [file] [log] [blame] [edit]
st1 = ("abc")
st2 = ("""
multiline""")
st3 = (
"multi"
)
n = (123)
id = (a)
fct1 = (foo(1))
fct2 = (foo(
arg = 1,
))
fct3 = (
foo(
arg = 1,
)
)
(macro(
name = ("foo"),
arg = ([("a")]),
))
nested = (((((1)))))
comments = ([
"a",
("b"), # end of line comment
# before comment
("c"),
]) # comment