- or download this
use strict;
use warnings;
...
}
print @transcript_id;
- or download this
foreach my $element (@column)
# ^^
- or download this
if ($element eq 'u' ||
$element eq 'x' ||
...
{
push @transcript_id, $column[10];
}
- or download this
foreach $element (@column)
{
...
last;
}
}