shithub: mc

ref: 060f6f50d77006222083d987cf6adeed1701c9ae
dir: /test/outparam.myr/

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

const main = {
	var v

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