shithub: mc

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