How would I write a triple-quoted string that ends...
# getting-started
n
How would I write a triple-quoted string that ends with a doublequote? Only way I see so far is
val dq = '"'; val s = """hello I end with a ${dq}"""
. Same for containing a triple doublequote