shithub: mc

ref: 16f5afe322e39f1716716700188664305b829d59
dir: /test/outparam.myr/

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

const main = {
	var v

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