forked from Mirror/wren
7 lines
103 B
Plaintext
7 lines
103 B
Plaintext
class Foo {
|
|
bar { return this }
|
|
baz { return "baz" }
|
|
}
|
|
|
|
IO.write((new Foo).bar.baz) // expect: baz
|