forked from Mirror/wren
- Rename IO.write -> IO.print. - Make IO.write not print a newline. - Support \u Unicode escapes in strings.
5 lines
181 B
Plaintext
5 lines
181 B
Plaintext
IO.print("s" is String) // expect: true
|
|
IO.print("s" is Object) // expect: true
|
|
IO.print("s" is Num) // expect: false
|
|
IO.print("s".type == String) // expect: true
|