repeat.bmx 130 B

12345678
  1. Rem
  2. Repeat executes the following section of code until a terminating condition is true.
  3. End Rem
  4. Repeat
  5. print i
  6. i:+1
  7. Until i=5