Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
           my $line = <$_[0]> ;
           return $line;
    }
    
  2. or download this
    sub GetLine {
            my $FH = shift;
            my $line = <$FH> ;
            return $line;
    }