read Command

Purpose:

Reads a line of text from a existing file.

Syntax:

read(filehandle)

Comments:

Example:

han = open("test.dat")

line1 = read(han)

p "line 1 = ", line1

close han