shithub: mc

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

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

const main = {
	var v

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