shithub: mc

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