shithub: mc

ref: 6a4c84b9838aa9344cb531f24c6b402dec92bb71
dir: /test/incret.myr/

View raw version
use std

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

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