mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
9 lines
225 B
Plaintext
9 lines
225 B
Plaintext
// Escape characters.
|
|
io.write("\"") // expect: "
|
|
io.write("\\") // expect: \
|
|
io.write("(\n)") // expect: (
|
|
// expect: )
|
|
|
|
// TODO: Non-printing escapes like \t.
|
|
// TODO: Unicode escape sequences.
|