PRINT/[USING,'image string',]data list
This statement lists the specified data on the current listing device.
USING |
Minor word which indicates that the data is to be output to a specified format. |
'image string' |
The format image string which was covered in the beginning of this section. |
data list |
The data list may consist of any combination of string variables, numerical variables, string literals, or numerical values. |
NOTE: If you use a plain PRINT/data
list command, then the default delimiter that prints after each element on the
data list is a comma. You can control the printed output with the USING minor
word, or by converting numbers to strings with the FSTR or FSTRL commands and then
concatenating the strings with the + operator. You can also change the comma
delimiter to a space delimiter with the DELIM command.