step.bmx 156 B

123456789
  1. Rem
  2. Specifies an optional constant that is used to increment the For iterator.
  3. End Rem
  4. ' count backwards from 10 to 0
  5. For i=10 to 0 step -1
  6. Print i
  7. Next