shithub: mc

ref: 49d3b0cf04719267479faebe9e2ffe0089a2f9ac
dir: /test/outparam.myr/

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

const main = {
	var v

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