rlox/interpreter/tests/lox/variable/shadow_and_local.lox

8 lines
111 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
{
var a = "outer";
{
print a; // expect: outer
var a = "inner";
print a; // expect: inner
}
}