ref: b0a47993a1361f133ca52302eae06b223c36c2ca 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 ;; -> n }