in reply to Re: Use of Handle to use subroutines in a module
in thread Use of Handle to use subroutines in a module

How do I know which module is Object Oriented Perl module and which one is not ?
  • Comment on Re^2: Use of Handle to use subroutines in a module

Replies are listed 'Best First'.
Re^3: Use of Handle to use subroutines in a module
by davido (Cardinal) on Aug 08, 2011 at 08:04 UTC

    You type: perldoc Module::Name, and look at the SYNOPSIS section in the documentation. If you see an object being instantiated it's an OO module. If you see bare functions being used, it's not OO.... unless you have one of those modules that does both, such as CGI. For those, you'll have to actually read a little further in the documentation.


    Dave