bdfs1m1fStructured Programming Macros

GOTO-Branch Macro

Use this macro to pass control to another section of code.

Format




label
is a symbolic label where control will be passed.

Entry Requirements

None.

Return Conditions

Control is passed to the label specified on the GOTO macro.

Programming Considerations

The label cannot be coded between the GOTO macro and the next structured programming macro at the same level of nesting.

Examples

The following example causes a branch to label ENDLOOP.

         GOTO ENDLOOP
 

Related Macros

None.