shithub: mc

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

View raw version
use std

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

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