1
0
forked from Mirror/wren
Files
wren/test/constructor/default.wren
Bob Nystrom 59bb7eec7a Remove some outdated TODOs.
They’re TODONE!
2014-02-13 08:38:44 -08:00

9 lines
195 B
Plaintext

class Foo {
toString { return "Foo" }
}
// Classes inherit the argument-less "new" one by default.
var foo = new Foo
IO.print(foo is Foo) // expect: true
IO.print(foo.toString) // expect: Foo