shithub: mc

ref: ad1ba29748a69e0ba936e889ccf487765f416c52
dir: /test/outparam.myr/

View raw version
const f = {out
	*out = 42
}

const main = {
	var v

	v = 16
	f(&v)
	-> v
}