shithub: mc

ref: 052fc6c33c0c5a945591d08933bfeada909d1fdb
dir: /test/outparam.myr/

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

const main = {
	var v

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