Files
wren/test/setter/instance.wren
T

9 lines
108 B
Plaintext
Raw Normal View History

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