forked from Mirror/wren
Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
8 lines
190 B
Plaintext
8 lines
190 B
Plaintext
// Escape characters.
|
|
IO.print("\"") // expect: "
|
|
IO.print("\\") // expect: \
|
|
IO.print("(\n)") // expect: (
|
|
// expect: )
|
|
|
|
// TODO: Non-printing escapes like \t.
|