shithub: mc

ref: d5869067c222619979e82e95ca511cb1d217ce18
dir: /test/incret.myr/

View raw version
use std

var i = 0
const f = {
	-> i++
}

const main = {
	f()
	std.exit(i)
}