Help for this page

Select Code to Download


  1. or download this
    #in package bar
    sub dostuff
    ...
        return $_[0]->SUPER::dostuff() if $condition;
    }
    
  2. or download this
    
    sub dostuff
    ...
        goto &{ $_[0]->SUPER::dostuff } if $condition;
    }