shithub: mc

ref: 82841cb55548a8eca0d0cdb5a88ffc1ff0b76338
dir: /test/outparam.myr/

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

const main = {
	var v

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