shithub: mc

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

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

const main = {
	var v

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