shithub: mc

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

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

const main = {
	var v

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