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