Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
    warn 'assigned coderef to $foo';
    my @mtchs = $foo->( qw(sacked soccer) );
    warn 'called $foo->()';
    
  2. or download this
     
    sub make_grep {
      my $pat = shift;
      sub { grep /$pat/o, @_ };
    }