1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[
("foo" + "bar")
(toString (/a/b + /c/d))
(toString (/foo/bar + "/../xyzzy/." + "/foo.txt"))
("/../foo" + toString /x/y)
"escape: \"quote\" \n \\"
"\${escaped interpolation}, $\{wrongly escaped interpolation}"
"end
of
line"
"foo${if true then "b${"a" + "r"}" else "xyzzy"}blaat"
"foo$bar"
"$\"$\""
"$"
]
|