shithub: mc

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