crafting-interpreters/lox/init.lox

9 lines
103 B
Text

class Foo {
init() {
this.name = "test";
print this;
}
}
var foo = Foo();
print foo.name;