Help for this page

Select Code to Download


  1. or download this
    sub alpha {
        my $self = shift;
    ...
        push @foo, [ @bar ] if $self->{baz} eq $gamma;
        return \@foo;
    }
    
  2. or download this
        push @foo, [ @bar ];
    
  3. or download this
        push @foo, [ @bar ] if $self->{baz} eq $gamma;
    
  4. or download this
    sub alpha {
        my $self = shift;
    ...
        push @foo, [ @bar ] if &$coderef;
        return \@foo;
    }