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