in reply to Two argument bless syntax

Hi logie17,

The way it is, you are allowed to create a new object using the Class/Module name, os using a pre-existent object.

Example:
my $obj1=Some::Class->new(); my $obj2=$obj1->new();