Run
Using the RUN statement inside a macro or subMacro executes another loaded macro or subMacro.
RUNname
name
Name of macro or subMacro.
SUBMACRO routine
MESSAGE "in routine"
END SUBMACRO
##############################################
MACRO main
MESSAGE "in main"
RUN routine
MESSAGE "back in main"
END MACRO