shithub: mc

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