- or download this
while(<IN1>) {
chomp;
...
push @lengths, length($_);
}
}
- or download this
while (<IN1>)
{
chomp;
push @lengths, length $_ unless />/;
}
- or download this
while(<IN2>) {
chomp;
...
push @source, $_;
}
}
- or download this
chomp, push @source, $_ while <IN2>;