Macro: BREAK

Module location: FMAC line 9655 (view source)

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Command: BREAK [BEGIN|END] Description: Exit or jump to start of a control loop (WHILE, REPEAT, FOR). Default action is to exit if no argument supplied. Parameters: BEGIN: Jump to start of loop. END: Jump to end of loop and exit. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

  #POP S$
  #PUSH !s
  #IFSAME !1 BEGIN
    Goto BEGIN$!s
  #ELSE
    Goto END$!s
  #ENDIF