shithub: mc

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