Help for this page

Select Code to Download


  1. or download this
        if ($method eq 'child_method') {
            print "Child->child_method\n";
    ...
            $method = "SUPER::$method";
            $self->$method(@_);
        }
    
  2. or download this
    package Child;
    @ISA = qw(Parent);
    ...
    __END__
    Child->child_method
    Parent->blah