shithub: mc

ref: 3cbdb83dbbc80b2c8a3458e5b1a1ae5d3080fb3b
dir: /test/condifrel.myr/

View raw version
use std
/* checks if relatonal operators work. should exit with 9. */
var x = 3
var y = 9
const main = {
	if x < 5 && y > 7
		-> 7
	else
		-> 9
	;;
}