shithub: mc

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

View raw version
use std

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

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