shithub: mc

ref: 427b9849fae0c94709a2ae3a43e17d5fe938ecc6
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 < 10; ++i
		n += i
	;;
	std.exit(n)
}