ref: ce93c2af0b4aeb2c40a05f2b45c1397b7a2ced23 dir: /test/condiftrue.myr/
use std /* checks that true complex boolean conditions work. exits with 7. */ const main = { var x = 5, y = 7 if x == 5 && y == 7 std.exit(7) else std.exit(9) ;; }