shithub: mc

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