Files
wren/test/variable/scope_while.wren
2013-11-26 22:52:00 -08:00

8 lines
160 B
Plaintext

// Body has its own scope.
var a = "outer"
var i = 0
while ((i = i + 1) <= 1) var a = "inner"
io.write(a) // expect: outer
// TODO(bob): What about condition?