reads a single line of text from the specified handle
$handle - the handle to read from (defaults to stdin/stdout)
a scalar string with the read text. If no text is read then $null is returned instead.
$handle = openf("readfile.sl"); while $read (readln($handle)) { # do something useful. }