ref: 44e5ed3ebbb9c3a8e5e5d809e0f5a6991c4b9570 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) ;; }