2013-11-24 05:00:47 +00:00
|
|
|
// Escape characters.
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print("\"") // expect: "
|
|
|
|
|
System.print("\\") // expect: \
|
|
|
|
|
System.print("(\n)") // expect: (
|
2015-11-11 15:55:48 +00:00
|
|
|
// expect: )
|
|
|
|
|
System.print("\%") // expect: %
|
2013-11-24 05:00:47 +00:00
|
|
|
|
2013-12-14 23:28:18 +00:00
|
|
|
// TODO: Non-printing escapes like \t.
|