shithub: mc

ref: dca5e6339087339e0cd9890b5f91c2b3c9e875aa
dir: /test/outparam.myr/

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

const main = {
	var v

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