A predicate to check if the reader portion of the handle is closed (end of file)
$handle - the handle to check.
True or false and this operator is only usable in a comparison context.
$handle = openf("/etc/hosts"); while (!-eof $handle) { $text = readln($handle); print("."); } println("\ndone!");
................. done!