http://qs1969.pair.com?node_id=695318


in reply to Re^2: A first attempt.. at OO perl
in thread A first attempt.. at OO perl

As a user of an OO module, one typically uses the package name only to invoke the new method:
my $obj = Your::Package->new(%options); $obj->do_something; $obj->do_something_other(@args);

Consider reading perltoot, or if that doesn't help you, read a book on object orientation in general (doesn't really have to be perl related).