Help for this page

Select Code to Download


  1. or download this
    package Bird;
    use Dragonfly;
    ...
        package Dragonfly;
        sub divebomb { shift->SUPER::divebomb(@_)}
    }
    
  2. or download this
    sub speak {
        my $self = shift;
        print "The mule speaks!\n";
        $self->Donkey::speak(@_);
    }