shithub: mc

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