- or download this
...
my $raResults = [];
...
}
return $raResults;
...
- or download this
foreach my $raRowPick ( @$raResults )
{
...
qq{@$raRowPick\n};
};
}
- or download this
foreach my $raRowPick ( @$raResults )
{
...
doSomethingWith( $raRowPick[ 0 ] );
}
}