ref: 64462bb36f34be7ab4aa1fcf7195739eb617a044
dir: /test/loop.myr/
use std
/* checks that loops work. */
const main = {
var i
var n
n = 0
for i = 0; i < 5; ++i
std.put("{}", i)
;;
for i = 0; i < 5; ++i
if i > 3
break
;;
std.put("{}", i)
;;
for i = 0; i < 10; ++i
if i < 6
continue
;;
std.put("{}", i)
;;
std.put("\n")
}