mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
12 lines
193 B
Lox
12 lines
193 B
Lox
|
|
{
|
||
|
|
var foo = "closure";
|
||
|
|
fun f() {
|
||
|
|
{
|
||
|
|
print foo; // expect: closure
|
||
|
|
var foo = "shadow";
|
||
|
|
print foo; // expect: shadow
|
||
|
|
}
|
||
|
|
print foo; // expect: closure
|
||
|
|
}
|
||
|
|
f();
|
||
|
|
}
|