depot/third_party/tvl/users/tazjin/rlox/examples/scope2.lox

11 lines
97 B
Text
Raw Normal View History

var a = "global";
{
fun showA() {
print a;
}
showA();
var a = "block";
showA();
}