shithub: mc

ref: 46ed41336621a10e35d0febce05d0ac1a4dcfa48
dir: /test/outparam.myr/

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

const main = {
	var v

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