Multiple operands

For keywords that have multiple operands, enclose the operands in parentheses.

Separate multiple operands for a keyword with a comma. Do not include spaces on either side of the equal sign that associates a keyword with its operands.

If you do not need to specify all of the operands for a keyword, use a comma to denote the missing operands. For example:

 DEFAULTS PRIM_REDUCE=ENABLE  
          PRIM_REDUCE_LIM=(50,50)   
          PRIM_REDUCE_INC=(10,20)
 INCLUDE JOBNAME=JOBABC12
 PRIM_REDUCE=(,ENABLE)  
Note: If you specify only the first operand and no other subsequent operands, you do not need to enclose the operand in parentheses or include trailing commas to denote the missing operands.

Spaces between operands that are separated by commas are ignored. Therefore, the following RULEDEFS specifications are equivalent:

PRIM_REDUCE=(ENABLE,     ENABLE)
PRIM_REDUCE=(ENABLE,ENABLE)