shithub: mc

ref: 8a15325e79833fa5003b3858db955df61ef41e0c
dir: /test/incret.myr/

View raw version
use std

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

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