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

10 lines
245 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