shithub: mc

ref: 2f5f1d3d30406b78123e934998a681d90ced60a0
dir: /test/condiftrue.myr/

View raw version
/* checks that true complex boolean conditions work. exits with 7. */
var x = 5
var y = 7
const main = {
	if x == 5 && y == 7
		-> 7
	else
		-> 9
	;;
}