Files
wren/test/variable/shadow_global.wren
T

6 lines
101 B
Plaintext
Raw Normal View History

2013-11-30 18:28:01 -08:00
var a = "global"
{
var a = "shadow"
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: shadow
2013-11-30 18:28:01 -08:00
}
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: global