shithub: mc

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

View raw version
use std

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

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