Local Variables 22

This commit is contained in:
nazrin 2025-06-07 23:52:16 +00:00
parent 4f2211eb72
commit 72a41e81e6
18 changed files with 1335 additions and 115 deletions

12
test/simplescope.lox Normal file
View file

@ -0,0 +1,12 @@
var a = "a";
{
var b = "b";
{
var c = "c";
print a + b + c;
}
var d = "d";
print a + b + d;
}