shithub: mc

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