Files
wren/test/language/setter/static.wren
T

8 lines
101 B
Plaintext
Raw Normal View History

2013-12-20 07:05:31 -08:00
class Foo {
static bar=(value) {
2015-09-15 07:46:09 -07:00
System.print(value)
2013-12-20 07:05:31 -08:00
}
}
Foo.bar = "value" // expect: value