1
0
forked from Mirror/wren

Get inheritance and core classes more correctly wired up.

This commit is contained in:
Bob Nystrom
2013-11-26 07:52:37 -08:00
parent af694053a5
commit eaeec01dc6
12 changed files with 210 additions and 124 deletions

4
test/string_type.wren Normal file
View 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