*McrInit
Nearest processing after loading Macro program
*McrInit starts following Macro program.
Make a descriptive record of statement of array variable and setting of variable initial value.
Example of Code
*MCRINIT
MAX& = 5
Dim WRKCR#(MAX&)
For LP& = 0 To MAX& - 1
WRKCR#(LP&) = -1
Next
Return