Files
wren/test/conditional/short_circuit.wren
T

3 lines
107 B
Plaintext
Raw Normal View History

2014-02-15 11:36:01 -08:00
true ? IO.print("ok") : IO.print("no") // expect: ok
false ? IO.print("no") : IO.print("ok") // expect: ok