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

7 lines
108 B
Plaintext
Raw Normal View History

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