shithub: mc

ref: 5196e4c16239a9f593c4efa14819b70721006740
dir: /test/outparam.myr/

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

const main = {
	var v

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