shithub: mc

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

View raw version
use std

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

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