shithub: mc

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

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

const main = {
	var v

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