crafting-interpreters/lox/init_early_return.lox

8 lines
75 B
Text

class Foo {
init() {
return;
print this;
}
}
var foo = Foo();