shithub: mc

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