shithub: mc

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

View raw version
use std

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

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