rlox/interpreter/tests/lox/variable/scope_reuse_in_different_blocks.lox

9 lines
105 B
Lox
Raw Normal View History

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