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

6 lines
No EOL
60 B
Lox

{
var a = "outer";
{
print a; // expect: outer
}
}