mlox/lox.t/variable/local_from_method.lox
2024-08-03 02:44:12 +02:00

9 lines
106 B
Lox

var foo = "variable";
class Foo {
method() {
print foo;
}
}
Foo().method(); // expect: variable