shithub: mc

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

View raw version
use std

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

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