shithub: mc

ref: 346c26a93cb79f89c3d0fb12d0a2d749956cebdb
dir: /test/loop.myr/

View raw version
use std
/* checks that loops work. exits with 45. */
const main = {
	var i
	var n

	n = 0
	for i = 0; i < 5; ++i
		std.put("%i", i)
	;;
	for i = 0; i < 5; ++i
		if i > 3
			break
		;;
		std.put("%i", i)
	;;
	for i = 0; i < 10; ++i
		if i < 6
			continue
		;;
		std.put("%i", i)
	;;
	std.put("\n")
}