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: )
|
|
|
|
|
|
2013-12-14 15:28:18 -08:00
|
|
|
// TODO: Non-printing escapes like \t.
|