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