shithub: mc

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

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

const main = {
	var v

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