Files
wren/test/class/name_inside_body.wren
T

15 lines
208 B
Plaintext
Raw Normal View History

2013-12-20 12:42:11 -08:00
class Foo {
static sayName {
2014-01-05 12:27:12 -08:00
IO.print(Foo.toString)
2013-12-20 12:42:11 -08:00
}
sayName {
2014-01-05 12:27:12 -08:00
IO.print(Foo.toString)
2013-12-20 12:42:11 -08:00
}
static toString { return "Foo!" }
}
Foo.sayName // expect: Foo!
(new Foo).sayName // expect: Foo!