<' extend sys { run() is also { var i : int = 0; repeat { outf("Current value of i : %x\n",i); i = i + 1; } until (i == 10); }; }; '>