crafting-interpreters/lox/scope.lox

9 lines
79 B
Text
Raw Permalink Normal View History

2025-05-28 09:05:18 +02:00
var a = "outer";
{
var a = "inner";
print a; // expect: inner
}
print a;