Here is a last update before I leave for my X-mas Vacation [Big Grin]

(below a sample code of BoxKite, converted in 1 second (too slow !) without recognising Operators yet, but it's going the right direction)



setascii("on")
$a = 1
cls
while $a < 5 ;Change this value to get more or less numbers
   $y = 1
       while $y <= 80
          $z = 1
          while $z <= 20
              at($z,$y) "$x " + chr($x)
              $z = $z + 1
              $x = $x + 1
          loop
          $y = $y + 10
       loop
   ? shell "%comspec% /c pause"
   $a = $a + 1
loop
exit




See you next year !
_________________________