Help for this page

Select Code to Download


  1. or download this
    A::B->new()
    
  2. or download this
    "A::B"->new()
    
  3. or download this
    A::B()->new()
    
  4. or download this
    1. Compile use A;
    2. Execute require A;
    ...
    6. Execute A->import();
    7. Compile my $test = A::B->new(test => 1); as A::B()->new
    8. Execute my $test = A::B->new(test => 1);
    
  5. or download this
    1. Compile require A;
    2. Compile my $test = A::B->new(test => 1); as "A::B"->new
    ...
    5. Compile sub B { ... }
    6. ...
    7. Execute my $test = A::B->new(test => 1);