shithub: mc

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