ref: b0886832a75e9d63f49cb878ed8abc56f37120c0 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 }