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

9 lines
333 B
Plaintext
Raw Normal View History

2014-01-20 18:12:55 -08:00
// False and null are false.
2015-09-15 07:46:09 -07:00
if (false) System.print("bad") else System.print("false") // expect: false
if (null) System.print("bad") else System.print("null") // expect: null
2014-01-20 18:12:55 -08:00
// Everything else is true.
2015-09-15 07:46:09 -07:00
if (true) System.print(true) // expect: true
if (0) System.print(0) // expect: 0
if ("") System.print("empty") // expect: empty