Help for this page

Select Code to Download


  1. or download this
    sub in_array {
      my $value = shift(@_) ;
      my @array = @_ ;
      return scalar(grep({$_ eq $value} @array)) ;
    }