shithub: mc

ref: c903ebab019372ce96c0122df1ab76f6a5db5f2e
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:])
}