Formallists

A formallist specifies the variables M uses to hold passed values. A formallist contains a list of zero or more parameters enclosed in parentheses, immediately following a label.

A formallist:

Example:

        MULT(MP,MC,RES)
        SET RES=MP*MC
        QUIT RES
        

In this example, illustrating a simple parameterized routine, the formallist contains the following items:

An example in the section describing "Actuallists" shows an invocation that matches this routine.