mlox/lox.t/constructor/arguments.lox

11 lines
173 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
class Foo {
init(a, b) {
print "init"; // expect: init
this.a = a;
this.b = b;
}
}
var foo = Foo(1, 2);
print foo.a; // expect: 1
print foo.b; // expect: 2