LINE INPUT Variable
Reads an entire line of text on the standard input.
LINE INPUT # File , Variable
Same as above, except that the data are read from the stream File.
' Print a file to standard output OPEN FileName FOR READ AS #hFile WHILE NOT Eof(hFile) LINE INPUT #hFile, OneLine PRINT OneLine WEND CLOSE #hFile
CLOSE, COPY, Eof, FLUSH, INPUT, Lof, KILL, OPEN, PRINT, READ, RENAME, Seek, SEEK, WRITE