Files
wren/test/setter/result.wren
T

7 lines
113 B
Plaintext
Raw Normal View History

class Foo {
bar = value { return "result" }
}
var foo = new Foo
IO.print(foo.bar = "value") // expect: result