Files
wren/test/variable/scope_if.wren
2013-12-21 19:25:09 -08:00

14 lines
257 B
Plaintext

// Create a local scope for the 'then' expression.
var a = "out"
if (true) {
var a = "in"
}
IO.write(a) // expect: out
// Create a local scope for the 'else' expression.
var b = "out"
if (false) "dummy" else {
var b = "in"
}
IO.write(b) // expect: out