Help for this page

Select Code to Download


  1. or download this
              [base]
              /    \
             /      \
    [subclass A]  [subclass B]
    
  2. or download this
    my $object = A->new;
    $object->someWeirdMethod;
    
  3. or download this
    my $object = B->new;
    $object->someWeirdMethod;