shithub: mc

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

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

const main = {
	var v

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