for.bmx 170 B

123456789
  1. Rem
  2. For marks the start of a loop that uses an iterator to execute a section of code repeatedly.
  3. End Rem
  4. ' print 5 times table
  5. For i=1 to 12
  6. Print "5*"+i+"="+5*i
  7. Next