shithub: mc

ref: 41dfa1df58c7e398a68e9c2b6f6f745b7b3f0b2b
dir: /test/condifrel.myr/

View raw version
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)
	;;
}