shithub: mc

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