Files
wren/test/scope_if.wren
T

10 lines
245 B
Plaintext
Raw Normal View History

2013-11-18 09:19:03 -08:00
// 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