forked from Mirror/wren
Get inheritance and core classes more correctly wired up.
This commit is contained in:
4
test/string_type.wren
Normal file
4
test/string_type.wren
Normal file
@ -0,0 +1,4 @@
|
||||
io.write("s" is String) // expect: true
|
||||
io.write("s" is Object) // expect: true
|
||||
io.write("s" is Num) // expect: false
|
||||
io.write("s".type == String) // expect: true
|
||||
Reference in New Issue
Block a user