Help for this page

Select Code to Download


  1. or download this
    my $tools = new TOOLS;
    
    $tools->SUPER::Callme(); # it should call the AGENT::Callme
    $tools->Callme();
    
  2. or download this
    package TOOLS;
    
    ...
      $self->SUPER::Callme();
      # do stuff.
    }