blob: aa41071d539809663e8e97a693a8e85efed755ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
discard """
errormsg: "closing \" expected"
file: "trawstr.nim"
line: 10
"""
# Test the new raw strings:
const
xxx = r"This is a raw string!"
yyy = "This not\" #ERROR
|