shithub: mc

ref: ed4eb60e9b0cc99c27af695d60ff454d16f6d519
dir: /test/subrangefor.myr/

View raw version
use std

const main = {
	for i in [1,2,3,4][:2]
		std.put("%i", i)
	;;
	std.put("\n")
}