Files
wren/test/language/conditional/short_circuit.wren
T

3 lines
107 B
Plaintext
Raw Normal View History

true ? IO.print("ok") : IO.print("no") // expect: ok
false ? IO.print("no") : IO.print("ok") // expect: ok