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

8 lines
133 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) { "result" }
2013-12-20 07:05:31 -08:00
}
2015-07-10 09:18:22 -07:00
var foo = Foo.new()
2015-09-15 07:46:09 -07:00
System.print(foo.bar = "value") // expect: result