shithub: mc

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