- or download this
package Callback;
...
}
1;
- or download this
package Parent;
use Callback;
...
}
1;
- or download this
package Child;
use base qw(Parent);
...
sub do_something { ... }
1;
- or download this
my $child = Child->new;
- or download this
$obj->$coderef()