mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
7 lines
103 B
Plaintext
7 lines
103 B
Plaintext
class Foo {
|
|
bar { return this }
|
|
baz { return "baz" }
|
|
}
|
|
|
|
IO.print((new Foo).bar.baz) // expect: baz
|