shithub: mc

ref: 1c351dde4625065e651108781c1de2683914fd0f
dir: /test/outparam.myr/

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

const main = {
	var v

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