shithub: mc

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

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

const main = {
	var v

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