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