Help for this page
$x->SUPER::SUPER::method;
# Within the child, get the parent’s class name from @ISA my ($parent) = @ISA; ... # Get a reference to the grandparent’s method “me” my $y = $grandparent->can('me'); $y->($object);