Help for this page

Select Code to Download


  1. or download this
    $a = make_grep("a");
    $b = make_grep("b");
    print &$a(qw(ack thpt barf)), "\n";
    print &$b(qw(ack thpt barf)), "\n";
    
  2. or download this
    sub make_grep {
      my $pat = shift;
      my $re = qr/$pat/;
      return sub { grep /$re/, @_ }
    }