qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
PRINT # Statement
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Writes data to a sequential device or file.
 
    PRINT #filenumber%, [USING formatstring$;] expressionlist[{; | ,}]
 
    ■ filenumber%       Number used to open the sequential file
 
    ■ formatstring$     Formatting characters that determine the appearance
                        of expressionlist
 
    ■ expressionlist    Numeric or string expressions to write to the file;
                        if omitted, PRINT # prints a blank line to the file
 
    ■ ; | ,             Specifies where the next output begins:
 
                        Character  Description
                        ═════════  ═════════════════════════════════════════
                        ;          Print immediately after the last value
                        ,          Print at the start of the next print zone;
                                   print zones are 14 characters wide
 
 See Also
    Character Formats (PRINT)        Device I/O Commands
    File I/O Commands                Print Command Summary
    WRITE # Statement