shithub: mc

ref: 3fccc8ae5d24b1ec3e15facbb765a219f5438c2c
dir: /test/outparam.myr/

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

const main = {
	var v

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