Help for this page

Select Code to Download


  1. or download this
    sub alpha; # unchanged from your example.
    sub beta {
    ...
      push @foo, [ @bar ] if $coderef->();
      \@foo;
    }
    
  2. or download this
    sub beta {
      my $self = shift;
    ...
    
    # and ...
      push @foo, [ @bar ] if $coderef->($baz);