shithub: mc

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

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

const main = {
	var v

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