shithub: mc

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