shithub: mc

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

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

const main = {
	var v

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