crafting-interpreters/lox/scoping.lox

11 lines
97 B
Text
Raw Normal View History

2025-05-25 10:52:20 +02:00
var a = "global";
{
fun showA() {
print a;
}
showA();
var a = "block";
showA();
}