goto.bmx 124 B

123456789
  1. Rem
  2. Causes program execution to jump to the #label specified.
  3. End Rem
  4. Print "one"
  5. Goto here
  6. Print "two"
  7. #here
  8. Print "three"