2013-11-24 05:00:47 +00:00
|
|
|
// Escape characters.
|
2014-01-05 20:27:12 +00:00
|
|
|
IO.print("\"") // expect: "
|
|
|
|
|
IO.print("\\") // expect: \
|
|
|
|
|
IO.print("(\n)") // expect: (
|
2013-11-24 05:00:47 +00:00
|
|
|
// expect: )
|
|
|
|
|
|
2013-12-14 23:28:18 +00:00
|
|
|
// TODO: Non-printing escapes like \t.
|