Files
wren/test/setter/static.wren
T

8 lines
97 B
Plaintext
Raw Normal View History

2013-12-20 07:05:31 -08:00
class Foo {
static bar=(value) {
2014-01-05 12:27:12 -08:00
IO.print(value)
2013-12-20 07:05:31 -08:00
}
}
Foo.bar = "value" // expect: value