shithub: mc

ref: 949eb0559d34c181134b810d16d845f7609c2222
dir: /test/outparam.myr/

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

const main = {
	var v

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