Local Variables 22
This commit is contained in:
parent
4f2211eb72
commit
72a41e81e6
18 changed files with 1335 additions and 115 deletions
12
test/simplescope.lox
Normal file
12
test/simplescope.lox
Normal 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;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue