shithub: mc

ref: 65f6675040a4c29da1bd387e7dc22c823a69da97
dir: /test/idxlen.myr/

View raw version
use std

const main = {
	var a = [1,2,3,4]
	std.put("{} ", a[$-1])
	std.put("{}\n", a[$-2:])
}