Help for this page

Select Code to Download


  1. or download this
        sub new {
            bless {}, shift;
        }
    
  2. or download this
        package B;
        sub init {
    ...
            my $self = shift;
            @$self {qw /_baz _qux/} = @_;
        }
    
  3. or download this
        package C;
        use A;
    ...
            $self -> B::init(@_[0, 1]);
            $self -> C::init(@_[2, 3]);
        }