shithub: mc

ref: 590dd41e3e1a90ce3986ab8db1e6490f597fba3f
dir: /test/patiter.myr/

View raw version
use std

const main = {
	/* should print 1,3,5 */
	for (1,x) in [(1,2),(1,3),(2,4),(1,5)]
		std.put("%i", x)
	;;
	std.put("\n")
}