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

11 lines
136 B
Plaintext
Raw Normal View History

2013-12-20 07:05:31 -08:00
class Foo {
2015-09-01 08:16:04 -07:00
construct new() {}
bar=(value) {
2015-09-15 07:46:09 -07:00
System.print(value)
2013-12-20 07:05:31 -08:00
}
}
2015-07-10 09:18:22 -07:00
var foo = Foo.new()
2013-12-20 07:05:31 -08:00
foo.bar = "value" // expect: value