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