shithub: mc

ref: 67e077fe5811a7bc218cb58de5a32e337417268c
dir: /test/incret.myr/

View raw version
use std

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

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