- or download this
use strict;
#use warnings;
- or download this
use strict;
use warnings;
- or download this
while (<COMPFILE>) {
$comptn = substr $_, 0,10;
...
sub search_tn {
- or download this
while (<COMPFILE>) {
search_tn( substr $_, 0, 10 );
...
sub search_tn {
my $comptn = shift;
- or download this
next until $. > 1;
- or download this
next if $. == 1;
- or download this
if ($record[0] eq "TLR") {
} else {
- or download this
next if $record[0] eq "TLR";
- or download this
if ($error == "") {
- or download this
if ($error eq "") {