shithub: mc

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