shithub: mc

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