Help for this page

Select Code to Download


  1. or download this
    open(my $fhin, '<', $genpept) or die "open '$genpept': $!";
    undef $/;
    my $in = <$fhin>;
    
  2. or download this
    while (my $in = <$fhin>) {
       # ... split etc. done once for each line $in.
    }