shithub: mc

ref: 5ce1ef188530525a21db822bafcd7886d96fcb92
dir: /test/outparam.myr/

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

const main = {
	var v

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