shithub: mc

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