First page
Back
Continue
Last page
Overview
Graphics
Method Modifiers
package Employee;
use Moose;
sub do_work {
my $self = shift;
$self->punch_in;
inner(); # call subclass here
$self->punch_out;
}