shithub: mc

ref: 94932c665b01982ed386de8fe958168001a95dec
dir: /test/outparam.myr/

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

const main = {
	var v

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