Files
wren/test/string/escapes.wren
T

8 lines
190 B
Plaintext
Raw Normal View History

2013-11-23 21:00:47 -08:00
// Escape characters.
2014-01-05 12:27:12 -08:00
IO.print("\"") // expect: "
IO.print("\\") // expect: \
IO.print("(\n)") // expect: (
2013-11-23 21:00:47 -08:00
// expect: )
// TODO: Non-printing escapes like \t.