shithub: mc

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