shithub: mc

ref: 8849da69a4e556e915c372be825f8cc3b4f775ab
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")
}