mlox/lox.t/variable/in_nested_block.lox

6 lines
60 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
{
var a = "outer";
{
print a; // expect: outer
}
}