my $foo = MyModule::->new($dbh); #### my $foo = MyModule->new($dbh); #### sub new { my $class = shift; my $self = {}; # self is a hashref. bless $self, $class; .... }
## my $foo = MyModule->new($dbh); ##
## sub new { my $class = shift; my $self = {}; # self is a hashref. bless $self, $class; .... }