shithub: mc

ref: 07c71bf1ffe122b10c171d151f36c03a0f73585a
dir: /test/outparam.myr/

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

const main = {
	var v

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