Back Previous Next


Linguist basic package - read

Syntax:

   read [line] {variable}/{buffer} from {file}

Keyword handler:

   net.eclecity.linguist.basic.keyword.BasicKRead.class

Runtime handler:

   net.eclecity.linguist.basic.handler.BasicHReadFile.class

Function:

Reads from an opened file into a variable or a buffer. If line is given, an entire line is read, otherwise reading stops at the next space or line end. See also write.

Example(s):

read Value from InputFile
read line Line from ThisFile


Back Previous Next