shithub: mc

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