shithub: mc

ref: 02201160614e5f25a7a73d86ed26a1f90fa4f5bb
dir: /test/condiftrue.myr/

View raw version
use std
/* checks that true complex boolean conditions work. exits with 7. */
const main = {
	var x = 5, y = 7

	if x == 5 && y == 7
		std.exit(7)
	else
		std.exit(9)
	;;
}