Files
wren/test/language/variable/shadow_local.wren

8 lines
123 B
Plaintext
Raw Normal View History

2013-11-30 18:28:01 -08:00
{
var a = "local"
{
var a = "shadow"
System.print(a) // expect: shadow
2013-11-30 18:28:01 -08:00
}
System.print(a) // expect: local
2013-11-30 18:28:01 -08:00
}