shithub: mc

ref: c3a4e93229ca543d44a0123548730a5c502be2c4
dir: /test/mul.myr/

View raw version
use std
/* should exit with status 42 */
const main = {
	var a = 7
	var b = 2
	var c = 3
	std.exit(a * b * c)
}