Files
wren/test/class/new.wren
T

7 lines
130 B
Plaintext
Raw Normal View History

2013-11-07 17:07:32 -08:00
class Foo {}
var foo = new Foo
2014-01-05 12:27:12 -08:00
IO.print(foo is Foo) // expect: true
// TODO: Test precedence and grammar of what follows "new".