Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can you explain what is meant by a "Perl Library"? 2

Status
Not open for further replies.

garymgordon

Programmer
Apr 5, 2000
307
US
Please explain what a Perl Library is and how it differs from a Perl Module or Perl script??

Thanks,
Gary
Gary M. Gordon, LLC
webmaster@garymgordon.com
Certified Web Developer ::
Application Programmer
 
A good book for this is the Orielly Perl Cookbook
a good compaion to their Learning Perl, Mastering Regular Expressions, Perl DBI, and Advanced Perl Programming.

I think that a module is a file that contains functions in objects, which are collecively called a library.
Disclaimer:
Beware: Studies have shown that research causes cancer in lab rats.
 
it is, in general, to be understood as a module, or a set of modules. when you say 'use', the thing that follows can be referred to as a library most of the time.
when you say 'use lib ("directory");' you tell perl to look in that directory for libraries, or, modules.
well, i don't know of any difference in meaning between the two. there may be in some circumstances. "If you think you're too small to make a difference, try spending a night in a closed tent with a mosquito."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top