Start getting block scope working.

This commit is contained in:
Bob Nystrom
2013-11-18 09:19:03 -08:00
parent 4d23d58bf1
commit e614e092ed
8 changed files with 127 additions and 14 deletions
@@ -0,0 +1,9 @@
{
var a = "first"
io.write(a) // expect: first
}
{
var a = "second"
io.write(a) // expect: second
}