shithub: mc

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

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

const main = {
	var v

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