Content deleted Content added
m →Perl packages and namespaces: linkW |
Two Bananas (talk | contribs) Updated links from CPAN to MetaCPAN |
||
Line 5:
A collection of modules, with accompanying documentation, build scripts, and usually a test suite, compose a '''distribution'''. The Perl community has a sizable library of distributions available for search and download via [[CPAN]].
Perl is a language allowing many different styles of programming. You're as likely to find a module written in a [[procedural]] style (for example, [
It is common for Perl modules to have embedded documentation in Perl's [[Plain Old Documentation]] format. POD imposes little structure on the author. It is flexible enough to be used to write articles, web pages and even entire books such as [http://www.oreilly.com/catalog/pperl3/colophon.html Programming Perl]. Contrast with [[javadoc]] which is specialized to documenting [[Java (programming language)|Java]] classes. By convention, module documentation typically follows the structure of a [[Manual page (Unix)|Unix man page]].
|