Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    
    ROOT::B->new();
    warn "new - $@" if $@;
    
  2. or download this
    use strict;
    use warnings;
    ...
    $compartment->reval(
        $despatch->{'A'}->test()
    );
    
  3. or download this
    package A;
    
    ...
    
    @ISA = qw(A);
    1;