mlox/lox.t/variable/scope_reuse_in_different_blocks.lox

9 lines
105 B
Lox
Raw Permalink Normal View History

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