| .PRINT USING Statement QuickSCREEN. |
|
  QuickSCREEN       Details       Example       Contents       Index |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| PRINT USING - a device I/O statement that prints strings or numbers |
|               using a specified format |
| Syntax |
|   PRINT USING formatstring; expressionlist[{,|;}] |
|     ž formatstring, a string-expression, specifies the format. Characters in |
|       formatstring have the following meaning: |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄCharacters Used to Format a Numeric ExpressionÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| #    Digit position                     ³ -     Placed after digit positions, |
| .    Decimal point position             ³       prints trailing sign for |
| ,    Placed left of the decimal point,  ³       negative numbers only |
|       prints a comma every third digit   ³ $$    Prints leading $ |
| +    Position of number's sign          ³ **    Fills leading spaces with * |
| ^^^^  Prints number in exponential format³ **$   Combines ** and $ |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄCharacters Used to Format a String ExpressionÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| &    Prints entire string               ³ \\  \\  Prints first 'n' characters, |
| !    Prints only the first character    ³       where n is the number of |
|       of the string                      ³       blanks between slashes + 2 |
| ÄÄÄÄÄÄÄÄÄÄÄCharacters Used to Print Literal Characters from formatstringÄÄÄÄÄÄ |
| _    Prints the following formatting    ³       Any character not in this |
|       character as a literal             ³       table is printed as a literal |
|
|     ž expressionlist contains the items to be printed |
|     ž optional "," or ";" at the end of the expressionlist are cursor |
      control Details |