Difference between revisions of "Perl"
Jump to navigation
Jump to search
(→Questions: -> Notes) |
m (→Usage: link to perl manpage) |
||
Line 8: | Line 8: | ||
* [[Perl built-in functions]] | * [[Perl built-in functions]] | ||
* [[Perl regex]] | * [[Perl regex]] | ||
+ | * '''official documentation''' | ||
+ | ** [[perl manpage]] | ||
===Design=== | ===Design=== |
Revision as of 22:28, 11 April 2006
This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!
|
Perl is a programming language widely used for web sites and Linux servers. It can be somewhat baffling to the eye – largely due to the frequent use of regular expressions – but due to its popularity it has been greatly refined and there is a large base of existing code available for reuse.
Articles
Usage
- Perl reference
- Perl built-in functions
- Perl regex
- official documentation
Design
Other Documentation
- CPAN: documentation links at the Comprehensive Perl Archive Network
Libraries and Modules
- CPAN: search the Comprehensive Perl Archive Network
Notes
- Although single-quoted strings are widely cited as not interpreting anything, you do have to backslash certain characters if you want them represented literally:
- the single-quote itself ( \' )
- period ( \. )
- One of the reasons for PHP's popularity over Perl for developing web applications is that it prints errors to the web browser, rather than simply quitting abruptly (causing either an incomplete page or, more likely, a 5xx Server Error). Perl does not do this by default. It is, however, quite easy to make this happen, by including the following line of code near the beginning of a program:
use CGI::Carp qw(fatalsToBrowser);