shithub: mc

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