in reply to Re: Advice on style
in thread Advice on style
Actually users should never:
my $instance = Your::Clever:Module::new();
Instead they should:
my $instance = Your::Clever:Module->new();
which works better with inheritance and is more robust against changes to the OO hierarchy.
|
|---|