shithub: mc

ref: b4230c2187e0aa9a298cdebbcc6af769d3284cac
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++]
}