Help for this page

Select Code to Download


  1. or download this
      my $atleastone = 1;
      while ($atleastone) {
    ...
        } ;
        print OUTFILE join("\t", @l), "\n" ;
      } ;
    
  2. or download this
      my $atleastone = 1;
      while ($atleastone) {
    ...
        chop $l ; # Discard trailing "\t"
        print OUTFILE "$l\n" ;
      } ;
    
  3. or download this
      my $atleastone = 1;
      while (defined($atleastone)) {
    ...
        chop $l ; # Discard trailing "\t"
        print OUTFILE "$l\n" ;
      } ;