shithub: mc

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