ref: 993d1af900057e362e08ea738e1f6f6b409c749e dir: /test/loop.myr/
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) }