Help for this page

Select Code to Download


  1. or download this
    sub in {
      my ($coderef)= shift(@_);
    ...
    
      for ( @vals ) { $coderef->($match) if /$match/ }
    }
    
  2. or download this
    sub in {
      my ($coderef)= shift(@_);
    ...
        $dispatch->($match);
      }
    }
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    
    in_list($code, 'Dick', @pals);      # Hello Dick!
    in_list($code, 'Rover', @pals);     # no output