shithub: mc

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

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

const main = {
	var v

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