Coding example for continuing parameters that contain contiguous spaces:
To continue a parameter onto the next line, enter a continuation symbol at the end of the line. The following table shows the continuation symbols.
Continuation symbol |
Continuation method |
---|---|
Hyphen (-) |
The hyphen is removed, and the parameter is continued in the leftmost column of the next line, retaining any contiguous spaces. |
Plus sign (+) |
The plus sign is removed, and the parameter is continued on the next line, removing any contiguous spaces. |
SETINIT- △△PREFIX('USER01.V1','NY')
If you continue to specify parameters by using a hyphen (-) as shown above, the command will be interpreted as follows:
Coding example for continuing parameters, removing contiguous spaces:
SETINIT△△PREFIX('USER01.V1','NY')
SETINIT PREFIX('USER01.V1',+ △△'NY')
If you continue to specify parameters by using a plus sign (+) as shown above, the command will be interpreted as follows:
SETINIT PREFIX('USER01.V1','NY')