statement/PRINT#                                             statement/PRINT#
 
 NAME
     PRINT# -- Writes data to a file or a device
 
 ABBREVIATION
     p <shift> R

 SYNOPSIS
     PRINT#<file>,<printlist>

 FUNCTION
     There are a few differences between this statement and the PRINT. First 
     of all, the word PRINT# is followed by a number, which refers to the 
     device or data file previously OPENed. The number is followed by a 
     comma, and a list of things to be PRINTed. The semicolon acts in the 
     same manner for spacing as it does in the PRINT statement. The comma 
     will send 10 spaces to most printers and can be used as a separator for 
     disk files.
 
 INPUTS
     <file>      - logical number of target file/device
     <printlist> - items to be printed
 
 RESULT
     Writes given data (<printlist>) to the target file/device.

 EXAMPLES
     100 PRINT#1,"HELLO THERE!",A$,B$,
 
 NOTES
     Some devices may not work with TAB and SPC.
 
 BUGS
     None
 
 SEE ALSO
     GET#
     INPUT#
     OPEN
     PRINT
     SPC()
     TAB()