shithub: mc

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