forked from Mirror/wren
- Rename IO.write -> IO.print. - Make IO.write not print a newline. - Support \u Unicode escapes in strings.
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
// Unicode characters are allowed in comments.
|
|
//
|
|
// Latin 1 Supplement: £§¶ÜÞ
|
|
// Latin Extended-A: ĐĦŋœ
|
|
// Latin Extended-B: ƂƢƩǁ
|
|
// Other stuff: ឃᢆ᯽₪ℜ↩⊗┺░
|
|
// Emoji: ☃☺♣
|
|
|
|
// TODO: What about combining characters?
|
|
|
|
IO.print("ok") // expect: ok
|