Help for this page

Select Code to Download


  1. or download this
    my @ptests = (88,89,90,91,110,115);
    
    if ( grep {$p == $_} @ptests  ) {
        return $p;
    }
    
  2. or download this
    use List::MoreUtils qw {firstval};
    
    ...
    if ( firstval {$p == $_} @ptests) {
        return $p;
    }