shithub: mc

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