shithub: mc

ref: ec60839982dffcb2212f6b7e9eeb8b11a0b4d292
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)
}