Perl: Difference between revisions

From RoggeWiki
Jump to navigation Jump to search
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Perl ==
== Perl ==


=== Perldoc ===
Perl has a culture of useful documentation. The ''perldoc'' utility is part of every complete Perl installation.
Use ''perldoc'' to read the documentation. Start with ''perldoc perltoc'',''perldoc perlfaq'' or ''perldoc perldoc''.
Perl uses a documentation format called ''POD'', which is short for ''Plain Old Documentation''.
''perldoc perlpod'' describes how ''POD'' works.
=== CPAN Comprehensive Perl Archive Network ===
The CPAN is an uploading and mirroring system for redistributeable, reusable Perl code.


CPAN Comprehensive Perl Archive Network


=== Links ===
=== Links ===
[ http://perldooc.perl.org perldoc.perl.org ]
*[http://perldoc.perl.org perldoc.perl.org]
[ http://search.cpan.org search.cpan.org ]
*[http://www.cpan.org]
[ http://metacpan.org metacpan.org   ]
*[http://search.cpan.org search.cpan.org]
*[http://metacpan.org metacpan.org]

Latest revision as of 11:23, 15 June 2016

Perl

Perldoc

Perl has a culture of useful documentation. The perldoc utility is part of every complete Perl installation.

Use perldoc to read the documentation. Start with perldoc perltoc,perldoc perlfaq or perldoc perldoc. Perl uses a documentation format called POD, which is short for Plain Old Documentation. perldoc perlpod describes how POD works.

CPAN Comprehensive Perl Archive Network

The CPAN is an uploading and mirroring system for redistributeable, reusable Perl code.


Links