shithub: mc

ref: 9193bdc08bcba1b515fb60d25b700963a454b90a
dir: /test/outparam.myr/

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

const main = {
	var v

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