shithub: mc

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