shithub: mc

ref: 06f83c93631d8af9eb25199a8229183c48b89ce8
dir: /test/postinc-ret.myr/

View raw version
use std

const main = {
	std.put("{}\n", f())
}

const a = [1,2,3][:]
const f = {
	var i = 0
	-> a[i++]
}