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