Help for this page

Select Code to Download


  1. or download this
    package Callback;
    
    ...
    }
    
    1;
    
  2. or download this
    package Parent;
    use Callback;
    ...
    }
    
    1;
    
  3. or download this
    package Child;
    use base qw(Parent);
    ...
    sub do_something { ... }
    
    1;
    
  4. or download this
    my $child = Child->new;
    
  5. or download this
      $obj->$coderef()