shithub: mc

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