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