shithub: mc

ref: 939f632c16cadc94f03173c274c2a55535088bb6
dir: /test/outparam.myr/

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

const main = {
	var v

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