Help for this page

Select Code to Download


  1. or download this
    sub new {
      my ($class) = @_;
    ...
              || die "Oh no you don't!!!!";  
      bless {}, $class;
    }
    
  2. or download this
    Foo::new();
    Foo::new("SomeOtherModuleName") ;
    Foo::new([]);
    Foo::new({});
    
  3. or download this
    sub new {
      my ($class) = @_;
    ...
                  || die "Oh no you don't!!!!";   
      bless {}, $class;
    }