LINE INPUT

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.

Example :

' 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


Referenced by :