shithub: mc

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

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

const main = {
	var v

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