- or download this
sub default_code {
my ($self,$extra) = @_;
my $sub = sub {
...
};
return $sub;
}
- or download this
$object->display( { my_code => sub {
my ($hashref) = shift;
...
};
}
);
- or download this
sub display {
my ($self,$args) = @_;
...
my $action = $args->{'my_code'} || $self->default_code;
$action->($args);
}