Help for this page

Select Code to Download


  1. or download this
       while (<FS>) { $OP .= $_ }
    
  2. or download this
        sub readfile {
            my $OP;
    ...
            close FS or die "Can't close $_[0]: $!";
            return $OP;
        }