Help for this page

Select Code to Download


  1. or download this
    my @taxR = ("PLRV1", "PMTVS", "PVXHB");
    my $curEntry = "PMTVS";
    if($curEntry ~~ @taxR){
       print "do rest of stuff";
    }
    
  2. or download this
    my @taxR = ("PLRV1", "PMTVS", "PVXHB");
    my $curEntry = "PMTVS";
    if( first { $_ eq $curEntry } @taxR ){
       print "do rest of stuff";
    }