Help for this page

Select Code to Download


  1. or download this
    package Parent {
       sub legacy_method {
    ...
    }
    
    Child->legacy_method;  # returns 2
    
  2. or download this
    sub legacy_method {
      my $next = $_[0]->can('current_method');
      goto $next;
    }