ref: 3d7695c257de8ea4d4c0b8999682de0b29ee3c20
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 < 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") }