Perl

Perl
Perl
Programming-republic-of-perl.png
Paradigm(s) multi-paradigm: functional, imperative, object-oriented (class-based), reflective, procedural, generic
Appeared in 1987
Designed by Larry Wall
Developer Larry Wall
Stable release 5.14.2[1] (September 26, 2011; 42 days ago (2011-09-26))
Preview release 5.15.3[2] (July 21, 2011; 3 months ago (2011-07-21))
Typing discipline Dynamic
Influenced by AWK, Smalltalk 80, Lisp, C, C++, sed, Unix shell, Pascal
Influenced Python, PHP, Ruby, ECMAScript, LPC, Windows PowerShell, JavaScript, Falcon, Perl 6
Implementation language C
OS Cross-platform
License GNU General Public License or Artistic License[3]
Usual filename extensions .pl .pm .t
Website perl.org
Wikibooks logo Perl Programming at Wikibooks

Perl is a high-level, general-purpose, interpreted, dynamic programming language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier.[4] Since then, it has undergone many changes and revisions and become widely popular amongst programmers. Larry Wall continues to oversee development of the core language, and its upcoming version, Perl 6. Perl borrows features from other programming languages including C, shell scripting (sh), AWK, and sed.[5] The language provides powerful text processing facilities without the arbitrary data length limits of many contemporary Unix tools,[6] facilitating easy manipulation of text files. Perl gained widespread popularity in the late 1990s as a CGI scripting language, in part due to its parsing abilities.[7]

In addition to CGI, Perl is used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. Perl is nicknamed "the Swiss Army chainsaw of programming languages" due to its flexibility and power.[8] It is also referred to as the "duct tape that holds the Internet together", in reference to its ubiquity and perceived inelegance.[9]

Contents

History

Early versions

Larry Wall began work on Perl in 1987, while working as a programmer at Unisys,[6] and released version 1.0 to the comp.sources.misc newsgroup on December 18, 1987.[10] The language expanded rapidly over the next few years.

Perl 2, released in 1988, featured a better regular expression engine. Perl 3, released in 1989, added support for binary data streams.

Originally the only documentation for Perl was a single (increasingly lengthy) man page. In 1991, Programming Perl, known to many Perl programmers as the "Camel Book" because of its cover, was published and became the de facto reference for the language. At the same time, the Perl version number was bumped to 4, not to mark a major change in the language but to identify the version that was documented by the book.

Early Perl 5

Perl 4 went through a series of maintenance releases, culminating in Perl 4.036 in 1993. At that point, Wall abandoned Perl 4 to begin work on Perl 5. Initial design of Perl 5 continued into 1994. The perl5-porters mailing list was established in May 1994 to coordinate work on porting Perl 5 to different platforms. It remains the primary forum for development, maintenance, and porting of Perl 5.[11]

Perl 5.000 was released on October 17, 1994.[12] It was a nearly complete rewrite of the interpreter, and it added many new features to the language, including objects, references, lexical (my) variables, and modules. Importantly, modules provided a mechanism for extending the language without modifying the interpreter. This allowed the core interpreter to stabilize, even as it enabled ordinary Perl programmers to add new language features. Perl 5 has been in active development since then.

Perl 5.001 was released on March 13, 1995. Perl 5.002 was released on February 29, 1996 with the new prototypes feature. This allowed module authors to make subroutines that behaved like Perl builtins. Perl 5.003 was released June 25, 1996, as a security release.

One of the most important events in Perl 5 history took place outside of the language proper and was a consequence of its module support. On October 26, 1995, the Comprehensive Perl Archive Network (CPAN) was established as a repository for Perl modules and Perl itself. As of January 2011, it carries over 19,000 modules by more than 8,000 authors.[13]

Perl 5.004 was released on May 15, 1997, and included among other things the UNIVERSAL package, giving Perl a base object to which all classes were automatically derived and the ability to require versions of modules. Another significant development was the inclusion of the CGI.pm module,[14] which contributed to Perl's popularity as a CGI scripting language.[15]

Perl also now supported running under Microsoft Windows and several other operating systems.[14]

Perl 5.005 was released on July 22, 1998. This release included several enhancements to the regex engine, new hooks into the backend through the B::* modules, the qr// regex quote operator, a large selection of other new core modules, and added support for several more operating systems, including BeOS.[16]

2000–present

Perl 5.6 was released on March 22, 2000. Major changes included 64-bit support, Unicode string representation, large file support (i.e. files over 2 GiB) and the "our" keyword.[17][18] When developing Perl 5.6, the decision was made to switch the versioning scheme to one more similar to other open source projects; after 5.005_63, the next version became 5.5.640, with plans for development versions to have odd numbers and stable versions to have even numbers.

In 2000, Larry Wall put forth a call for suggestions for a new version of Perl from the community. The process resulted in 361 RFC (request for comments) documents which were to be used in guiding development of Perl 6. In 2001,[19] work began on the apocalypses for Perl 6, a series of documents meant to summarize the change requests and present the design of the next generation of Perl. They were presented as a digest of the RFCs, rather than a formal document. At this point, Perl 6 existed only as a description of a language.

Perl 5.8 was first released on July 18, 2002, and had nearly yearly updates since then. The latest version of Perl 5.8 is 5.8.9, released December 14, 2008. Perl 5.8 improved unicode support, added a new IO implementation, added a new thread implementation, improved numeric accuracy, and added several new modules.[20]

In 2004, work began on the Synopses – originally documents that summarized the Apocalypses, but which became the specification for the Perl 6 language. In February 2005, Audrey Tang began work on Pugs, a Perl 6 interpreter written in Haskell.[21] This was the first concerted effort towards making Perl 6 a reality. This effort stalled in 2006.[22]

On December 18, 2007, the 20th anniversary of Perl 1.0, Perl 5.10.0 was released. Perl 5.10.0 included notable new features, which brought it closer to Perl 6. These included a switch statement (called "given"/"when"), regular expressions updates, and the smart match operator, "~~".[23][24] Around this same time, development began in earnest on another implementation of Perl 6 known as Rakudo Perl, developed in tandem with the Parrot virtual machine. As of November 2009, Rakudo Perl has had regular monthly releases and now is the most complete implementation of Perl 6.

A major change in the development process of Perl 5 occurred with Perl 5.11; the development community has switched to a monthly release cycle, with planned release dates three months ahead.

On April 12, 2010, Perl 5.12.0 was released. Notable core enhancements include new package NAME VERSION syntax, the Yada Yada operator (intended to mark placeholder code that is not yet implemented), implicit strictures, full Y2038 compliance, regex conversion overloading, DTrace support, and Unicode 5.2.[25] On January 21, 2011, Perl 5.12.3 was released; it contains updated modules and some documentation changes.[26] Version 5.12.4 was released on June 20, 2011.

On May 14, 2011, Perl 5.14 was released. On September 26, 2011, the latest version, 5.14.2, was released.

The latest development release of Perl 5 is 5.15.4, released by Jesse Vincent on October 20, 2011.

Name

Perl was originally named "Pearl", after the Parable of the Pearl from the Gospel of Matthew. Larry Wall wanted to give the language a short name with positive connotations; he claims that he considered (and rejected) every three- and four-letter word in the dictionary. He also considered naming it after his wife Gloria. Wall discovered the existing PEARL programming language before Perl's official release and changed the spelling of the name.[27]

When referring to the language, the name is normally capitalized (Perl) as a proper noun. When referring to the interpreter program itself, the name is often uncapitalized (perl) because most Unix-like file systems are case-sensitive. Before the release of the first edition of Programming Perl, it was common to refer to the language as perl; Randal L. Schwartz, however, capitalized the language's name in the book to make it stand out better when typeset. This case distinction was subsequently documented as canonical.[28]

There is some contention about the all-caps spelling "PERL", which the documentation declares incorrect[28] and which some core community members consider a sign of outsiders.[29] The name is occasionally backronymed as Practical Extraction and Report Language, which appears at the top of the documentation[27] and in some printed literature.[30] Several backronyms have been suggested as equally canonical, including Wall's own humorous Pathologically Eclectic Rubbish Lister.[31] Indeed, Wall claims that the name was intended to inspire many different expansions.[32]

Camel symbol

The Camel symbol used by O'Reilly Media

Programming Perl, published by O'Reilly Media, features a picture of a camel on the cover and is commonly referred to as the "Camel Book".[33] This image of a camel has become an unofficial symbol of Perl as well as a general hacker emblem, appearing on T-shirts and other clothing items.

O'Reilly owns the image as a trademark but licenses it for non-commercial use, requiring only an acknowledgement and a link to www.perl.com. Licensing for commercial use is decided on a case by case basis.[34] O'Reilly also provides "Programming Republic of Perl" logos for non-commercial sites and "Powered by Perl" buttons for any site that uses Perl.[34]

Onion symbol

The onion logo used by The Perl Foundation

The Perl Foundation owns an alternative symbol, an onion, which it licenses to its subsidiaries, Perl Mongers, PerlMonks, Perl.org, and others.[35] The symbol is a visual pun on pearl onion.[36]

Overview

Perl is a general-purpose programming language originally developed for text manipulation, but as of 2010 is used for a wide range of tasks including system administration, web development, network programming, games, bioinformatics, and GUI development.

The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal).[37] Its major features include support for multiple programming paradigms (procedural, object-oriented, and functional styles), reference counting memory management (without a cycle-detecting garbage collector), built-in support for text processing, and a large collection of third-party modules.

According to Larry Wall, Perl has two slogans. The first is "There's more than one way to do it", commonly known as TMTOWTDI. The second slogan is "Easy things should be easy and hard things should be possible".[6]

Features

The overall structure of Perl derives broadly from C. Perl is procedural in nature, with variables, expressions, assignment statements, brace-delimited blocks, control structures, and subroutines.

Perl also takes features from shell programming. All variables are marked with leading sigils, which unambiguously identify the data type (for example, scalar, array, hash) of the variable in context. Importantly, sigils allow variables to be interpolated directly into strings. Perl has many built-in functions that provide tools often used in shell programming (although many of these tools are implemented by programs external to the shell) such as sorting, and calling on system facilities.

Perl takes lists from Lisp, hashes ("associative arrays") from AWK, and regular expressions from sed. These simplify and facilitate many parsing, text-handling, and data-management tasks.

Perl 5 added features that support complex data structures, first-class functions (that is, closures as values), and an object-oriented programming model. These include references, packages, class-based method dispatch, and lexically scoped variables, along with compiler directives (for example, the strict pragma). A major additional feature introduced with Perl 5 was the ability to package code as reusable modules. Larry Wall later stated that "The whole intent of Perl 5's module system was to encourage the growth of Perl culture rather than the Perl core."[38]

All versions of Perl do automatic data-typing and automatic memory-management. The interpreter knows the type and storage requirements of every data object in the program; it allocates and frees storage for them as necessary using reference counting (so it cannot deallocate circular data structures without manual intervention). Legal type-conversions — for example, conversions from number to string — are done automatically at run time; illegal type conversions are fatal errors.

Design

The design of Perl can be understood as a response to three broad trends in the computer industry: falling hardware costs, rising labor costs, and improvements in compiler technology. Many earlier computer languages, such as Fortran and C, aimed to make efficient use of expensive computer hardware. In contrast, Perl is designed to make efficient use of expensive computer-programmers.

Perl has many features that ease the task of the programmer at the expense of greater CPU and memory requirements. These include automatic memory management; dynamic typing; strings, lists, and hashes; regular expressions; introspection; and an eval() function. Perl follows the theory of "no built-in limits",[33] an idea similar to the Zero One Infinity rule.

Wall was trained as a linguist, and the design of Perl is very much informed by linguistic principles. Examples include Huffman coding (common constructions should be short), good end-weighting (the important information should come first), and a large collection of language primitives. Perl favors language constructs that are concise and natural for humans to write, even where they complicate the Perl interpreter.

Perl syntax reflects the idea that "things that are different should look different."[39] For example, scalars, arrays, and hashes have different leading sigils. Array indices and hash keys use different kinds of braces. Strings and regular expressions have different standard delimiters. This approach can be contrasted with languages such as Lisp, where the same S-expression construct and basic syntax are used for many different purposes.

Perl does not enforce any particular programming paradigm (procedural, object-oriented, functional, or others) or even require the programmer to choose among them.

There is a broad practical bent to both the Perl language and the community and culture that surround it. The preface to Programming Perl begins: "Perl is a language for getting your job done."[6] One consequence of this is that Perl is not a tidy language. It includes many features, tolerates exceptions to its rules, and employs heuristics to resolve syntactical ambiguities. Because of the forgiving nature of the compiler, bugs can sometimes be hard to find. Perl's function documentation remarks on the variant behavior of built-in functions in list and scalar contexts that "In general, they do what you want, unless you want consistency."[40]

No written specification or standard for the Perl language exists for Perl versions through Perl 5, and there are no plans to create one for the current version of Perl. There has been only one implementation of the interpreter, and the language has evolved along with it. That interpreter, together with its functional tests, stands as a de facto specification of the language. Perl 6, however, started with a specification,[41] and several projects[42] aim to implement some or all of the specification.

Applications

Perl has many and varied applications, compounded by the availability of many standard and third-party modules.

Ever since the early days of the Web, programmers have used Perl to write CGI scripts. Perl is known as one of "the three Ps" (along with Python and PHP), the most popular dynamic languages for writing Web applications. It is also an integral component of the popular LAMP solution stack for web development. Large projects written in Perl include cPanel, Slash, Bugzilla, RT, TWiki, and Movable Type. Many high-traffic websites use Perl extensively. Examples include Amazon.com, bbc.co.uk, Priceline.com, Craigslist,[43] IMDb,[44] LiveJournal, Slashdot and Ticketmaster.

Perl is often used as a glue language, tying together systems and interfaces that were not specifically designed to interoperate, and for "data munging",[45] that is, converting or processing large amounts of data for tasks such as creating reports. In fact, these strengths are intimately linked. The combination makes Perl a popular all-purpose language for system administrators, particularly because short programs can be entered and run on a single command line.

With a degree of care, Perl code can be made portable across Windows and Unix. Portable Perl code is often used by suppliers of software (both COTS and bespoke) to simplify packaging and maintenance of software build- and deployment-scripts.

Graphical user interfaces (GUIs) may be developed using Perl. For example, Perl/Tk is commonly used to enable user interaction with Perl scripts. Such interaction may be synchronous or asynchronous, using callbacks to update the GUI. For more information about the technologies involved, see Tk, Tcl and WxPerl.

Perl is also widely used in finance and in bioinformatics, where it is valued for rapid application development and deployment and for its capability to handle large data-sets.

Implementation

Perl is implemented as a core interpreter, written in C, together with a large collection of modules, written in Perl and C. as of 2010, the stable version (5.12.3) is 14.2 MB when packaged in a tar file and gzip compressed.[46] The interpreter is 150,000 lines of C code and compiles to a 1 MB executable on typical machine architectures. Alternatively, the interpreter can be compiled to a link library and embedded in other programs. There are nearly 500 modules in the distribution, comprising 200,000 lines of Perl and an additional 350,000 lines of C code. (Much of the C code in the modules consists of character-encoding tables.)

The interpreter has an object-oriented architecture. All of the elements of the Perl language—scalars, arrays, hashes, coderefs, filehandles—are represented in the interpreter by C structs. Operations on these structs are defined by a large collection of macros, typedefs, and functions; these constitute the Perl C API. The Perl API can be bewildering to the uninitiated, but its entry points follow a consistent naming-scheme, which provides guidance to those who use it.

The life of a Perl interpreter divides broadly into a compile phase and a run phase.[47] In Perl, the phases are the major stages in the interpreter's life-cycle. Each interpreter goes through each phase only once, and the phases follow in a fixed sequence.

Most of what happens in Perl's compile phase is compilation, and most of what happens in Perl's run phase is execution, but there are significant exceptions. Perl makes important use of its capability to execute Perl code during the compile phase. Perl will also delay compilation into the run phase. The terms that indicate the kind of processing that is actually occurring at any moment are compile time and run time. Perl is in compile time at most points during the compile phase, but compile time may also be entered during the run phase. The compile time for code in a string argument passed to the eval built-in occurs during the run phase. Perl is often in run time during the compile phase and spends most of the run phase in run time. Code in BEGIN blocks executes at run time but in the compile phase.

At compile time, the interpreter parses Perl code into a syntax tree. At run time, it executes the program by walking the tree. Text is parsed only once, and the syntax tree is subject to optimization before it is executed, so that execution is relatively efficient. Compile-time optimizations on the syntax tree include constant folding and context propagation, but peephole optimization is also performed.

Perl has a Turing-complete grammar because parsing can be affected by run-time code executed during the compile phase.[48] Therefore, Perl cannot be parsed by a straight Lex/Yacc lexer/parser combination. Instead, the interpreter implements its own lexer, which coordinates with a modified GNU bison parser to resolve ambiguities in the language.

It is often said that "Only perl can parse Perl",[49] meaning that only the Perl interpreter (perl) can parse the Perl language (Perl), but even this is not, in general, true. Because the Perl interpreter can simulate a Turing machine during its compile phase, it would need to decide the Halting Problem in order to complete parsing in every case. It's a long-standing result that the Halting Problem is undecidable, and therefore not even perl can always parse Perl. Perl makes the unusual choice of giving the user access to its full programming power in its own compile phase. The cost in terms of theoretical purity is high, but practical inconvenience seems to be rare.

Other programs that undertake to parse Perl, such as source-code analyzers and auto-indenters, have to contend not only with ambiguous syntactic constructs but also with the undecidability of Perl parsing in the general case. Adam Kennedy's PPI project focused on parsing Perl code as a document (retaining its integrity as a document), instead of parsing Perl as executable code (which not even Perl itself can always do). It was Kennedy who first conjectured that "parsing Perl suffers from the 'Halting Problem'",[50] which was later proved.[51]

Perl is distributed with some 120,000 functional tests. These run as part of the normal build process and extensively exercise the interpreter and its core modules. Perl developers rely on the functional tests to ensure that changes to the interpreter do not introduce bugs; additionally, Perl users who see that the interpreter passes its functional tests on their system can have a high degree of confidence that it is working properly.

Maintenance of the Perl interpreter has become increasingly difficult over the years. The code base has undergone continuous development since 1994. The code has been optimized for performance at the expense of simplicity, clarity, and strong internal interfaces. New features have been added, yet virtually complete backward compatibility with earlier versions is maintained. Major releases of Perl were coordinated by Perl pumpkings,[52] which handled integrating patch submissions and bug fixes, but the language has since changed to a rotating, monthly release cycle. Development discussion takes place via the perl5_porters mailing list. As of Perl 5.11, development efforts have included refactoring certain core modules known as 'dual lifed' modules out of the Perl core[53] to help alleviate some of these problems.

Availability

Perl is dual licensed under both the Artistic License and the GNU General Public License. Distributions are available for most operating systems. It is particularly prevalent on Unix and Unix-like systems, but it has been ported to most modern (and many obsolete) platforms. With only six reported exceptions, Perl can be compiled from source code on all POSIX-compliant, or otherwise-Unix-compatible platforms.[54]

Because of unusual changes required for the Mac OS Classic environment, a special port called MacPerl was shipped independently.[55]

The Comprehensive Perl Archive Network carries a complete list of supported platforms with links to the distributions available on each.[56] CPAN is also the source for publicly available Perl modules that are not part of the core Perl distribution.

Windows

Users of Microsoft Windows typically install one of the native binary distributions of Perl for Win32, most commonly Strawberry Perl or ActivePerl. Compiling Perl from source code under Windows is possible, but most installations lack the requisite C compiler and build tools. This also makes it difficult to install modules from the CPAN, particularly those that are partially written in C.

ActivePerl is a closed source distribution from ActiveState that has regular releases that track the core Perl releases.[57] The distribution also includes the Perl package manager (PPM),[58] a popular tool for installing, removing, upgrading, and managing the use of common Perl modules.

Strawberry Perl is an open source distribution for Windows. It has had regular, quarterly releases since January 2008, including new modules as feedback and requests come in. Strawberry Perl aims to be able to install modules like standard Perl distributions on other platforms, including compiling XS modules.

The Cygwin emulation layer is another way of running Perl under Windows. Cygwin provides a Unix-like environment on Windows, and both Perl and CPAN are available as standard pre-compiled packages in the Cygwin setup program. Because Cygwin also includes the gcc, compiling Perl from source is also possible.

Database interfaces

Perl is widely favored for database applications. Its text-handling facilities are useful for generating SQL queries; arrays, hashes, and automatic memory management make it easy to collect and process the returned data.

In early versions of Perl, database interfaces were created by relinking the interpreter with a client-side database library. This was sufficiently difficult that it was done for only a few of the most-important and most widely used databases, and it restricted the resulting perl executable to using just one database interface at a time.

In Perl 5, database interfaces are implemented by Perl DBI modules. The DBI (Database Interface) module presents a single, database-independent interface to Perl applications, while the DBD (Database Driver) modules handle the details of accessing some 50 different databases; there are DBD drivers for most ANSI SQL databases.

DBI provides caching for database handles and queries, which can greatly improve performance in long-lived execution environments such as mod_perl,[59] helping high-volume systems avert load spikes as in the Slashdot effect.

In modern Perl applications, especially those written using Web application frameworks such as Catalyst, the DBI module is often used indirectly via object-relational mappers such as DBIx::Class, Class::DBI or Rose::DB::Object which generate SQL queries and handle data transparently to the application author.

Comparative performance

The Computer Language Benchmarks Game, a project hosted by Alioth, compares the performance of implementations of typical programming problems in several programming languages.[60] The submitted Perl implementations typically perform toward the high end of the memory-usage spectrum and give varied speed results. Perl's performance in the benchmarks game is typical for interpreted languages.[61]

Large Perl programs start more slowly than similar programs in compiled languages because perl has to compile the source every time it runs. In a talk at the YAPC::Europe 2005 conference and subsequent article "A Timely Start", Jean-Louis Leroy found that his Perl programs took much longer to run than he expected because the perl interpreter spent much of the time finding modules because of his over-large include path.[62] Unlike Java, Python, and Ruby, Perl has only experimental support for pre-compiling.[63] Therefore Perl programs pay this overhead penalty on every execution. The run phase of typical programs is long enough that amortized startup time is not substantial, but benchmarks that measure very short execution times are likely to be skewed due to this overhead.

A number of tools have been introduced to improve this situation. The first such tool was Apache's mod_perl, which sought to address one of the most-common reasons that small Perl programs were invoked rapidly: CGI Web development. ActivePerl, via Microsoft ISAPI, provides similar performance improvements.

Once Perl code is compiled, there is additional overhead during the execution phase that typically isn't present for programs written in compiled languages such as C or C++. Examples of such overhead include bytecode interpretation, reference-counting memory management, and dynamic type-checking.

Optimizing

Like any code, Perl programs can be tuned for performance using benchmarks and profiles after a readable and correct implementation is finished. In part because of Perl's interpreted nature, writing more-efficient Perl will not always be enough to meet one's performance goals for a program.

In such situations, the most-critical routines of a Perl program can be written in other languages such as C or Assembler, which can be connected to Perl via simple Inline modules or the more-complex-but-flexible XS mechanism.[64] Nicholas Clark, a Perl core developer, discusses some Perl design trade-offs and solutions in a 2002 document called "When perl is not quite fast enough".[65]

Future

Camelia, the logo for the Perl 6 project.[66]

At the 2000 Perl Conference, Jon Orwant made a case for a major new language initiative.[67] This led to a decision to begin work on a redesign of the language, to be called Perl 6. Proposals for new language features were solicited from the Perl community at large, and more than 300 RFCs were submitted.

Larry Wall spent the next few years digesting the RFCs and synthesizing them into a coherent framework for Perl 6. He has presented his design for Perl 6 in a series of documents called "apocalypses", which are numbered to correspond to chapters in Programming Perl. As of January 2011, the developing specification of Perl 6 is encapsulated in design documents called Synopses, which are numbered to correspond to Apocalypses.[68]

Perl 6 is not intended to be backward compatible, although there will be a compatibility mode. Perl 6 and Perl 5 are distinct languages with a common ancestry.[69]

Thesis work by Bradley M. Kuhn, overseen by Larry Wall, considered the possible use of the Java virtual machine as a runtime for Perl.[70] Kuhn's thesis showed this approach to be problematic. In 2001, it was decided that Perl 6 would run on a cross-language virtual machine called Parrot. This will mean that other languages targeting the Parrot will gain native access to CPAN, allowing some level of cross-language development.

In 2005, Audrey Tang created the pugs project, an implementation of Perl 6 in Haskell. This was, and continues to act as, a test platform for the Perl 6 language (separate from the development of the actual implementation) allowing the language designers to explore. The pugs project spawned an active Perl/Haskell cross-language community centered around the freenode #perl6 IRC channel.

A number of features in the Perl 6 language now show similarities to Haskell.[citation needed]

As of early 2009, Perl 6 development is primarily centered around Rakudo Perl 6, an implementation running on top of the Parrot virtual machine. Another implementation, Mildew, is also under active development and does not use Parrot.

Development of Perl 5 is also continuing. Perl 5.12.0 was released in April 2010 with some new features influenced by the design of Perl 6.[25][71] New maintenance versions are scheduled to be released on a monthly basis, the latest in the 5.12-series, 5.12.4, was released on June 20, 2011. Perl 5.14.1 was released on June 17, 2011

Perl community

Perl's culture and community has developed alongside the language itself. Usenet was the first public venue in which Perl was introduced, but over the course of its evolution, Perl's community was shaped by the growth of broadening Internet-based services including the introduction of the World Wide Web. The community that surrounds Perl was, in fact, the topic of Larry Wall's first "State of the Onion" talk.[72]

State of the Onion

State of the Onion is the name for Larry Wall’s yearly keynote-style summaries on the progress of Perl and its community. They are characterized by his hallmark humor, employing references to Perl’s culture, the wider hacker culture, Wall’s linguistic background, sometimes his family life, and occasionally even his Christian background.

Each talk is first given at various Perl conferences and is eventually also published online.

Perl pastimes

JAPHs
In email, Usenet, and message board postings, "Just another Perl hacker" (JAPH) programs are a common trend, originated by Randal L. Schwartz, one of the earliest professional Perl trainers.[73] In the parlance of Perl culture, Perl programmers are known as Perl hackers, and from this derives the practice of writing short programs to print out the phrase "Just another Perl hacker,". In the spirit of the original concept, these programs are moderately obfuscated and short enough to fit into the signature of an email or Usenet message. The "canonical" JAPH as developed by Schwartz includes the comma at the end, although this is often omitted.[74]
Perl golf
Perl "golf" is the pastime of reducing the number of characters (key "strokes") used in a Perl program to the bare minimum, much as how golf players seek to take as few shots as possible in a round. The phrase's first use [75] emphasized the difference between pedestrian code meant to teach a newcomer and terse hacks likely to amuse experienced Perl programmers, an example of the latter being JAPHs that were already used in signatures in Usenet postings and elsewhere. Similar stunts had been an unnamed pastime in the language APL in previous decades. The use of Perl to write a program that performed RSA encryption prompted a widespread and practical interest in this pastime.[76] In subsequent years, the term "code golf" has been applied to the pastime in other languages.[77] A Perl Golf Apocalypse was held at Perl Conference 4.0 in Monterey, California in July 2000.
Obfuscation
As with C, obfuscated code competitions were a well known pastime in the late 1990s. The Obfuscated Perl Contest was a competition held by The Perl Journal from 1996 to 2000 that made an arch virtue of Perl's syntactic flexibility. Awards were given for categories such as "most powerful"—programs that made efficient use of space—and "best four-line signature" for programs that fit into four lines of 76 characters in the style of a Usenet signature block.[78]
Poetry
Perl poetry is the practice of writing poems that can be compiled as legal Perl code, for example the piece known as Black Perl. This hobby is made possible by the large number of English words that are used in the Perl. New poems are regularly submitted to the community at PerlMonks.[79]

Perl on IRC

There are a number of IRC channels that offer support for the language and some modules.

IRC Network Channels
irc.freenode.net #perl #perl6 #cbstream #perlcafe #poe
irc.perl.org #moose #poe #catalyst #dbix-class #perl-help #distzilla #epo #corehackers #sdl #win32 #toolchain #padre
irc.slashnet.org #perlmonks
irc.oftc.net #perl
irc.efnet.net #perlhelp
irc.rizon.net #perl
irc.debian.org #debian-perl

CPAN Acme

There are also many examples of code written purely for entertainment on the CPAN. Lingua::Romana::Perligata, for example, allows writing programs in Latin.[80] Upon execution of such a program, the module translates its source code into regular Perl and runs it.

The Perl community has set aside the "Acme" namespace for modules that are fun in nature (but its scope has widened to include exploratory or experimental code or any other module that is not meant to ever be used in production). Some of the Acme modules are deliberately implemented in amusing ways. This includes Acme::Bleach, one of the first modules in the Acme:: namespace,[81] which allows the program's source code to be "whitened" (i.e., all characters replaced with whitespace) and yet still work.

See also

References

  1. ^ "Download Perl". www.perl.org. http://www.perl.org/get.html. Retrieved 2011-09-30. 
  2. ^ "Download Perl". search.cpan.org. http://search.cpan.org/dist/perl/. Retrieved 2011-09-30. 
  3. ^ "Perl Licensing". dev.perl.org. http://dev.perl.org/licenses. Retrieved 2011-01-08. 
  4. ^ Sheppard, Doug (2000-10-16). "Beginner's Introduction to Perl". dev.perl.org. http://www.perl.com/pub/2000/10/begperl1.html. Retrieved 2011-01-08. 
  5. ^ Ashton, Elaine (1999). "The Timeline of Perl and its Culture (v3.0_0505)". http://history.perl.org/PerlTimeline.html. 
  6. ^ a b c d Wall, Larry, Tom Christiansen and Jon Orwant (July 2000). Programming Perl, Third Edition. O'Reilly Media. ISBN 0-596-00027-8. 
  7. ^ Smith, Roderick W. (21 Jun 2002). Advanced Linux Networking. Addison-Wesley Professional. p. 594. ISBN 978-0201774238. 
  8. ^ Sheppard, Doug (2000-10-16). "Beginner's Introduction to Perl". O'Reilly Media. http://www.perl.com/pub/a/2000/10/begperl1.html. Retrieved 2008-07-27. 
  9. ^ Leonard, Andrew. "The joy of Perl". Salon.com. http://www.salon.com/21st/feature/1998/10/cov_13feature.html. Retrieved 2011-01-08. 
  10. ^ "comp.sources.unix". Google Groups. Google. 1988-02-01. http://groups.google.com/group/comp.sources.unix/tree/browse_frm/month/1988-02?_done=%2Fgroup%2Fcomp.sources.unix%2Fbrowse_frm%2Fmonth%2F1988-02%3F&. Retrieved 2011-01-13. 
  11. ^ "perl.perl5.porters archive". perl.org. http://www.nntp.perl.org/group/perl.perl5.porters/. Retrieved 2011-01-13. 
  12. ^ "perlhist - the Perl history records". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perlhist.html. Retrieved 2011-01-21. 
  13. ^ "CPAN". CPAN. http://www.cpan.org/. Retrieved 2011-01-02. 
  14. ^ a b "perl5004delta - what's new for perl5.004". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5004delta.html. Retrieved 2011-01-08. 
  15. ^ Patwardhan, Nathan; Siever, Ellen; Spainhour, Stephen (2002). Perl in a Nutshell, Second Edition. O'Reilly Media. ISBN 978-0-596-00241-1. 
  16. ^ "perl5005delta - what's new for perl5.005". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5005delta.html. Retrieved 2011-01-21. 
  17. ^ "perl56delta - what's new for perl v5.6.0". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl56delta.html. Retrieved 2011-01-21. 
  18. ^ "perl56delta - what's new for perl v5.6.x". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl561delta.html. Retrieved 2011-01-21. 
  19. ^ Wall, Larry. "Apocalypse 1: The Ugly, the Bad, and the Good". http://dev.perl.org/perl6/doc/design/apo/A01.html. Retrieved 2011-01-08. 
  20. ^ "perl58delta - what is new for perl v5.8.0". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl58delta.html. Retrieved 2011-01-21. 
  21. ^ "A Plan for Pugs". O'Reilly Media. 2005-03-03. http://www.perl.com/pub/a/2005/03/03/pugs_interview.html. Retrieved 2011-01-27. 
  22. ^ Tang, Audrey (2010-04-21). "Re: How to Implement Perl 6 in Ten Years". PerlMonks. http://www.perlmonks.org/?node_id=835936. Retrieved 2011-01-03. 
  23. ^ "perl5100delta - what is new for perl 5.10.0". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5100delta.html. Retrieved 2011-01-08. 
  24. ^ "perlsyn - Perl syntax". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perlsyn.html#Smart-matching-in-detail. Retrieved 2011-01-21. 
  25. ^ a b "perl5120delta - what is new for perl v5.12.0". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5120delta.html. Retrieved 2011-01-08. 
  26. ^ "perldelta - what is new for perl v5.12.3". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5123delta.html. Retrieved 2011-01-08. 
  27. ^ a b Richardson, Marjorie (1999-05-01). "Larry Wall, the Guru of Perl". Linux Journal. http://www.linuxjournal.com/article/3394. Retrieved 2011-01-03. 
  28. ^ a b "perlfaq1: What's the difference between "perl" and "Perl"?". perldoc.perl.org - Perl 5 version 12.2 documentation. http://perldoc.perl.org/perlfaq1.html#What's-the-difference-between-%22perl%22-and-%22Perl%22%3f. 
  29. ^ Schwartz, Randal. "PERL as shibboleth and the Perl community". PerlMonks. http://www.perlmonks.org/index.pl?node_id=510594. Retrieved 2007-06-01. 
  30. ^ Steve McConnell (2004) Code Complete, 2nd ed., Microsoft Press, p. 65.
  31. ^ Wall, Larry. "perl - The Perl language interpreter". Perl 5 version 12.2 documentation. http://perldoc.perl.org/perl.html#BUGS. Retrieved 2011-01-26. 
  32. ^ Wall, Larry. "Re^7: PERL as shibboleth and the Perl community". PerlMonks. http://www.perlmonks.org/index.pl?node_id=511722. Retrieved 2011-01-02. 
  33. ^ a b Schwartz, Randal L; Phoenix, Tom; foy, brian. Learning Perl, Third Edition. ISBN 978-0-596-00132-2. 
  34. ^ a b "The Perl Camel Usage and Trademark Information". O'Reilly Media. http://onlamp.com/pub/a/oreilly/perl/usage/. Retrieved 2011-01-09. 
  35. ^ "Perl Trademark". The Perl Foundation. http://www.perlfoundation.org/perl_trademark. Retrieved 2011-01-09. 
  36. ^ Gillmore, Dan (1998-10-25). "Republic Of Perl". Chicago Tribune. http://articles.chicagotribune.com/1998-10-25/news/9810250094_1_programmers-open-source-movement-programming-community. Retrieved 2011-01-10. 
  37. ^ Kirrily, Robert. "perlintro -- a brief introduction and overview of Perl". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perlintro.html. Retrieved 2011-01-10. 
  38. ^ Usenet post, May 10, 1997, with ID 199705101952.MAA00756@wall.org
  39. ^ Wall, Larry (1997-03-01). "Wherefore Art, Thou?". Linux Journal. http://www.linuxjournal.com/article/2070. Retrieved 2011-03-13. 
  40. ^ "perlfunc - Perl builtin functions". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perlfunc.html. Retrieved 2011-01-10. 
  41. ^ "Perl 6 Specification". The Perl 6 Project. http://www.perl6.org/specification. Retrieved 2011-01-27. 
  42. ^ "Perl 6 Compilers". The Perl 6 Project. http://www.perl6.org/compilers/. Retrieved 2011-01-27. 
  43. ^ Gilmore, W. J.. Beginning PHP and MySQL: From Novice to Professional, Fourth Edition. Apress. p. 484. ISBN 978-1430231141. 
  44. ^ "IMDb Helpdesk: What software/hardware are you using to run the site?". Internet Movie Database. http://www.imdb.com/help/search?domain=helpdesk_faq&index=1&file=techinfo. Retrieved 2011-02-12. 
  45. ^ "Perl Books - Book: Data Munging with Perl". Perl.org. http://books.perl.org/book/95. Retrieved December 30, 2010. 
  46. ^ "Perl Source Code". CPAN. http://www.cpan.org/src. Retrieved 2011-01-27. 
  47. ^ A description of the Perl 5 interpreter can be found in Programming Perl, 3rd Ed., chapter 18. See particularly page 467, which carefully distinguishes run phase and compile phase from run time and compile time. Perl "time" and "phase" are often confused.
  48. ^ Schwartz, Randal. "On Parsing Perl". http://www.perlmonks.org/index.pl?node_id=44722. Retrieved 2007-01-03. 
  49. ^ "The Perl Journal #19/9.26". O'Reilly Media. ftp://ftp.ora.com/pub/labs/tpj/tpj2.pdf. Retrieved 2011-02-04. 
  50. ^ Kennedy, Adam (2006). "PPI—Parse, Analyze and Manipulate Perl (without perl)". CPAN. http://search.cpan.org/~adamk/PPI-1.215/lib/PPI.pm. 
  51. ^ "Rice's Theorem". The Perl Review 4 (3): 23–29. Summer 2008.  and "Perl is Undecidable". The Perl Review 5 (0): 7–11. Fall 2008. , available online at Kegler, Jeffrey. "Perl and Undecidability". http://www.jeffreykegler.com/Home/perl-and-undecidability. 
  52. ^ http://www.perlfoundation.org/perl5/index.cgi?pumpking
  53. ^ "perl5110delta - what is new for perl v5.11.0". Perl 5 version 12.2 documentation. perldoc.perl.org. http://perldoc.perl.org/perl5110delta.html. Retrieved 2011-01-08. 
  54. ^ Hietaniemi, Jarkko (1998). "Perl Ports (Binary Distributions)". CPAN.org. http://www.cpan.org/ports/. 
  55. ^ "The MacPerl Pages". Prime Time Freeware. 1997. http://www.macperl.com/. 
  56. ^ "Perl Ports (Binary Distributions)". CPAN. http://www.cpan.org/ports/. Retrieved 2011-01-27. 
  57. ^ "ActivePerl is Perl for Windows, Mac, Linux, AIX, HP-UX & Solaris". ActiveState Software. http://www.activestate.com/activeperl. Retrieved 2011-01-09. 
  58. ^ "Using PPM". ActiveState Software. http://docs.activestate.com/activeperl/5.12/faq/ActivePerl-faq2.html. Retrieved 2011-01-09. 
  59. ^ Bekman, Stas. "Efficient Work with Databases under mod_perl". http://perl.apache.org/docs/1.0/guide/performance.html#Efficient_Work_with_Databases_under_mod_perl. Retrieved 2007-09-01. 
  60. ^ "Alioth: The Computer Language Benchmarks Game: Project Info". Alioth. http://alioth.debian.org/projects/shootout/. Retrieved 2011-01-13. 
  61. ^ Boxplot Summary "Which programming languages are fastest?". Computer Language Benchmarks Game. Alioth. http://shootout.alioth.debian.org/u32/benchmark.php?test=all〈=all&d=data&v8=on&lua=on&python=on&php=on&perl=on&yarv=on Boxplot Summary. Retrieved 2011-01-13. 
  62. ^ Leroy, Jean-Louis (2005-12-01). "A Timely Start". O'Reilly. http://www.perl.com/pub/a/2005/12/21/a_timely_start.html. 
  63. ^ Beattie, Malcolm and Enache Adrian (2003). "B::Bytecode Perl compiler's bytecode backend". CPAN. http://search.cpan.org/~nwclark/perl-5.8.8/ext/B/B/Bytecode.pm#KNOWN_BUGS. 
  64. ^ Ingerson, Brian. "Inline - search.cpan.org". CPAN. http://search.cpan.org/~sisyphus/Inline-0.47/Inline.pod. Retrieved 2011-01-26. 
  65. ^ Clark, Nicholas. "When perl is not quite fast enough". http://www.ccl4.org/~nick/P/Fast_Enough/. Retrieved 2011-01-02. 
  66. ^ "Perl 6". The Perl 6 Project. http://perl6.org/. Retrieved 2011-02-27. 
  67. ^ Torkington, Nathan. "Transcription of Larry's talk". nntp.perl.org. http://www.nntp.perl.org/group/perl.perl6.meta/2000/10/msg424.html. Retrieved 2011-01-25. 
  68. ^ "Official Perl 6 Documentation". The Perl 6 Project. http://perlcabal.org/syn/. Retrieved 2011-01-25. 
  69. ^ "Perl 6 - dev.perl.org". dev.perl.org. http://dev.perl.org/perl6/. Retrieved 2011-01-25. 
  70. ^ Kuhn, Bradley (January 2001). Considerations on Porting Perl to the Java Virtual Machine. University of Cincinnati. http://www.ebb.org/bkuhn/writings/technical/thesis/. Retrieved 2008-06-28. 
  71. ^ "Perl 5.12.0 released - Update". Heise Media UK. 2010-04-13. http://www.h-online.com/open/news/item/Perl-5-12-0-released-Update-976919.html. Retrieved 2011-01-08. 
  72. ^ Wall, Larry (1997-08-20). "Perl Culture (AKA the first State of the Onion)". http://www.wall.org/~larry/keynote/keynote.html. 
  73. ^ Randal L. Schwartz (1999-05-02). "Who is Just another Perl hacker?". comp.lang.perl.misc. (Web link). Retrieved 2007-11-12. 
  74. ^ Schwartz, Randal (2005-03-31). "Canonical JAPH". PerlMonks. http://www.perlmonks.org/bare/?node_id=443856. Retrieved 2011-05-16. 
  75. ^ Greg Bacon (1999-05-28). "Re: Incrementing a value in a slice". comp.lang.perl.misc. (Web link). Retrieved 2011-07-12. 
  76. ^ Back, Adam. "RSA in 5 lines of perl". http://www.cypherspace.org/rsa/pureperl.html. Retrieved 2011-01-10. 
  77. ^ "Code Golf: What is Code Golf?". 29degrees. 2007. http://codegolf.com/. 
  78. ^ Gallo, Felix (2003). [oreilly.com/catalog/tpj3/chapter/ch43.pdf "The Zeroth Obfuscated Perl Contest"]. In Jon Orwant. Games, diversions, and Perl culture: best of the Perl journal. O'Reilly Media. oreilly.com/catalog/tpj3/chapter/ch43.pdf. Retrieved 2011-01-12. 
  79. ^ "Perl Poetry". PerlMonks. http://www.perlmonks.org/?node_id=1590. Retrieved 2011-01-27. 
  80. ^ Conway, Damian. "Lingua::Romana::Perligata -- Perl for the XXI-imum Century". http://www.csse.monash.edu.au/~damian/papers/HTML/Perligata.html. 
  81. ^ Brocard, Leon (2001-05-23). "use Perl; Journal of acme". use Perl. http://use.perl.org/~acme/journal/200. 

Further reading

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • PERL — Paradigmen: prozedural, modular, teilweise objektorientiert Erscheinungsjahr: 1987 Entwickler: Larry Wall, Perl Porter Aktuelle  …   Deutsch Wikipedia

  • Perl — Desarrollador(es) Larry Wall www.perl.org Información general Paradigma multiparadigma, funcional, im …   Wikipedia Español

  • Perl 6 — Apparu en Spécification : 2001 2011, mise en œuvre partielle par Rakudo Star Auteur …   Wikipédia en Français

  • Perl 6 — Saltar a navegación, búsqueda Perl 6 Paradigma: multiparadigma Apareció en: 2000 Diseñado por: Larry Wall y la comunidad Perl Tipo de dato: Dinámico y estático Implementaciones …   Wikipedia Español

  • Perl — Семантика: мультипарадигменный: императивный, объектно ориентированный, функциональный Тип исполнения: интерпретатор Появился в: 1987 Автор(ы) …   Википедия

  • Perl 5 — Perl (langage) Pour les articles homonymes, voir Perl. Apparu en 1987 …   Wikipédia en Français

  • Perl 6 — Класс языка: Мультипарадигмальный Появился в: 2000 …   Википедия

  • Perl — steht für: Perl (Mosel), eine Gemeinde im Landkreis Merzig Wadern im Saarland Perl (Programmiersprache), eine freie, plattformunabhängige und interpretierte Programmiersprache (Skriptsprache) Perl (Schriftmaß), eine der kleineren gegossenen… …   Deutsch Wikipedia

  • perl — subst. Corp de literă cu mărimea de cinci puncte tipografice. – Din germ. Perl. Trimis de oprocopiuc, 13.03.2004. Sursa: DEX 98  perl s. n. Trimis de siveco, 10.08.2004. Sursa: Dicţionar ortografic  PERL s.n. Corp de literă de cinci puncte… …   Dicționar Român

  • PERL — {{{image}}}   Sigles d une seule lettre   Sigles de deux lettres   Sigles de trois lettres AAA à DZZ EAA à HZZ IAA à LZZ MAA à PZZ QAA à TZZ UAA à XZZ …   Wikipédia en Français

  • Perl — язык программирования для разработки CGI скриптов. Программы, написанные на Perl, запускаются на стороне сервера. Perl не является коммерческим продуктом. См. также: Скрипт языки CGI приложения Финансовый словарь Финам …   Финансовый словарь

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”