crafting-interpreters/lox/init_return.lox

6 lines
58 B
Text
Raw Permalink Normal View History

2025-05-26 10:19:18 +02:00
class Foo {
init() {
return "something else";
}
}