Files
wren/test/language/variable/scope_reuse_in_different_blocks.wren
T

10 lines
109 B
Plaintext
Raw Normal View History

2013-11-18 09:19:03 -08:00
{
var a = "first"
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: first
2013-11-18 09:19:03 -08:00
}
{
var a = "second"
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: second
2013-11-18 09:19:03 -08:00
}