crafting-interpreters/lox/init_early_return.lox

9 lines
75 B
Text
Raw Normal View History

2025-05-26 10:19:18 +02:00
class Foo {
init() {
return;
print this;
}
}
var foo = Foo();