Files
wren/test/language/if/if.wren
T

11 lines
305 B
Plaintext
Raw Normal View History

2014-01-20 18:12:55 -08:00
// Evaluate the 'then' expression if the condition is true.
2015-09-15 07:46:09 -07:00
if (true) System.print("good") // expect: good
if (false) System.print("bad")
2014-01-20 18:12:55 -08:00
// Allow block body.
2015-09-15 07:46:09 -07:00
if (true) { System.print("block") } // expect: block
2014-01-20 18:12:55 -08:00
// Assignment in if condition.
var a = false
2015-09-15 07:46:09 -07:00
if (a = true) System.print(a) // expect: true