Help for this page

Select Code to Download


  1. or download this
    sub quick_method {
        return shift->SUPER::some_other_method(@_);
    }
    
  2. or download this
    sub quick_method {
        my $self = shift;
        my @args = @_;
        return $self->SUPER::some_other_method(@args);
    }