ref: ce93c2af0b4aeb2c40a05f2b45c1397b7a2ced23 dir: /test/condifrel.myr/
use std /* checks if relatonal operators work. should exit with 9. */ const main = { var x = 3, y = 9 if x < 5 && y > 7 std.exit(7) else std.exit(9) ;; }