statement/INPUT#                                             statement/INPUT#
 
 NAME
     INPUT# -- Reads data from a file or a device
 
 ABBREVIATION
     i <shift> N

 SYNOPSIS
     INPUT#<file>,<variable>[,<...>,<variable>]

 FUNCTION
     This works like INPUT, but takes the data from a previously OPENed file 
     or device. No prompt string is allowed.
 
 INPUTS
     <file>     - file/device number to be read
     <variable> - acquired data will be stored in this variable
 
 RESULT
     Reads data from the file/device and stores acquired data in the target 
     variable(s).

 EXAMPLES
     10 INPUT#2,A$,C,D$
 
 NOTES
     This statement can only be executed within a program.
 
 BUGS
     None
 
 SEE ALSO
     GET
     GETKEY
     INPUT
     OPEN