shithub: mc

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