mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-14 15:47:59 +01:00
7 lines
93 B
Plaintext
7 lines
93 B
Plaintext
class Foo {
|
|
construct new() {}
|
|
def bar {}
|
|
}
|
|
|
|
System.print(Foo.new().bar) // expect: null
|