shithub: mc

ref: 0a337df767ec5a911dfef3ca529406e2ad3c4462
dir: /test/outparam.myr/

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

const main = {
	var v

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