Help for this page

Select Code to Download


  1. or download this
    # ok, yeah, this is perl5ey
    sub in_array {
       my $foo = shift;
       return grep $_ eq $foo, @global_array;
    }