Perl

This article is about the programming language. For other uses, see Perl (disambiguation).
Not to be confused with Pearl.

Perl
Paradigm multi-paradigm: functional, imperative, object-oriented (class-based), reflective, procedural, event-driven, generic
Designed by Larry Wall
Developer Larry Wall
First appeared December 18, 1987 (1987-12-18)
Stable release
5.24.0[1] / May 10, 2016 (2016-05-10)
Preview release
5.25.7[2] / November 20, 2016 (2016-11-20)
Typing discipline Dynamic
Implementation language C
OS Cross-platform
License Artistic License 1.0[3][4] or GNU General Public License[5]
Filename extensions .pl .pm .t .pod
Website www.perl.org
Influenced by
AWK, Smalltalk 80, Lisp, C, C++, sed, Unix shell, Pascal
Influenced
CoffeeScript, ECMAScript/JavaScript, Falcon, Groovy, Julia, LPC, Perl 6, PHP, Python, Ruby, Windows PowerShell

Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6.[6]

Though Perl is not officially an acronym,[7] there are various backronyms in use, the best-known being "Practical Extraction and Reporting Language".[8] Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier.[9] Since then, it has undergone many changes and revisions. Perl 6, which began as a redesign of Perl 5 in 2000, eventually evolved into a separate language. Both languages continue to be developed independently by different development teams and liberally borrow ideas from one another.

The Perl languages borrow features from other programming languages including C, shell script (sh), AWK, and sed.[10] They provide powerful text processing facilities without the arbitrary data-length limits of many contemporary Unix commandline tools,[11] facilitating easy manipulation of text files. Perl 5 gained widespread popularity in the late 1990s as a CGI scripting language, in part due to its unsurpassed[12][13][14] regular expression and string parsing abilities.[15]

In addition to CGI, Perl 5 is used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. It has been nicknamed "the Swiss Army chainsaw of scripting languages" because of its flexibility and power,[16] and possibly also because of its "ugliness".[17] In 1998, it was also referred to as the "duct tape that holds the Internet together", in reference to both its ubiquitous use as a glue language and its perceived inelegance.[18]

History

Early versions

Larry Wall began work on Perl in 1987, while working as a programmer at Unisys,[11] and released version 1.0 to the comp.sources.misc newsgroup on December 18, 1987.[19] 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 well 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.[20]

Perl 5.000 was released on October 17, 1994.[21] 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 June 2015, it carries over 150,775 modules in 31,896 distributions, written by more than 12,219 authors, and is mirrored worldwide at more than 253 locations.[22]

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,[23] which contributed to Perl's popularity as a CGI scripting language.[24]

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

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.[25]

2000–present

Major version Latest update
Old version, no longer supported: 5.5 2004-02-23[26]
Old version, no longer supported: 5.6 2003-11-15[26]
Old version, no longer supported: 5.8 2008-12-14[26]
Old version, no longer supported: 5.10 2009-08-23[26]
Old version, no longer supported: 5.12 2012-11-10[26]
Old version, no longer supported: 5.14 2013-03-10[26]
Old version, no longer supported: 5.16 2013-03-11[26]
Old version, no longer supported: 5.18 2014-10-02[26]
Old version, no longer supported: 5.20 2015-09-12[26]
Older version, yet still supported: 5.22 2016-04-29[26]
Current stable version: 5.24 2016-05-09[26]
Legend:
Old version
Older version, still supported
Current stable version
Latest preview version
Future release

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.[27][28] 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, 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 that were to be used in guiding development of Perl 6. In 2001,[29] 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. Perl 5.8 improved Unicode support, added a new I/O implementation, added a new thread implementation, improved numeric accuracy, and added several new modules.[30] As of 2013 this version still remains the most popular version of Perl and is used by Red Hat 5, Suse 10, Solaris 10, HP-UX 11.31 and AIX 5.

In 2004, work began on the "Synopses" – documents that originally 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.[31] This was the first concerted effort towards making Perl 6 a reality. This effort stalled in 2006.[32]

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, "~~".[33][34] 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 of development releases, with a yearly schedule of stable releases. By that plan, bugfix point releases will follow the stable releases every three months.

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.[35] On January 21, 2011, Perl 5.12.3 was released; it contains updated modules and some documentation changes.[36] Version 5.12.4 was released on June 20, 2011. The latest version of that branch, 5.12.5, was released on November 10, 2012.

On May 14, 2011, Perl 5.14 was released. JSON support is built-in as of 5.14.2. The latest version of that branch, 5.14.4, was released on March 10, 2013.

On May 20, 2012, Perl 5.16 was released. Notable new features include the ability to specify a given version of Perl that one wishes to emulate, allowing users to upgrade their version of Perl, but still run old scripts that would normally be incompatible.[37] Perl 5.16 also updates the core to support Unicode 6.1.[37]

On May 18, 2013, Perl 5.18 was released. Notable new features include the new dtrace hooks, lexical subs, more CORE:: subs, overhaul of the hash for security reasons, support for Unicode 6.2.[38]

On May 27, 2014, Perl 5.20 was released. Notable new features include subroutine signatures, hash slices/new slice syntax, postfix dereferencing (experimental), Unicode 6.3, rand() using consistent random number generator.[39]

Some observers credit the release of Perl 5.10 with the start of the Modern Perl movement.[40] In particular, this phrase describes a style of development that embraces the use of the CPAN, takes advantage of recent developments in the language, and is rigorous about creating high quality code.[41] While the book "Modern Perl"[42] may be the most visible standard-bearer of this idea, other groups such as the Enlightened Perl Organization[43] have taken up the cause.

In late 2012 and 2013 several projects for alternative implementations for Perl 5 started: Perl5 in Perl6 by the Rakudo Perl team,[44] moe by Stevan Little and friends,[45] p2[46] by the Perl11 team under Reini Urban, gperl by goccy,[47] and rperl a kickstarter project led by Will Braswell and affiliated with the Perll11 project.[48]

PONIE

PONIE is an acronym for Perl On New Internal Engine. The PONIE Project existed from 2003 until 2006 and was to be a bridge between Perl 5 and Perl 6. It was an effort to rewrite the Perl 5 interpreter to run on Parrot, the Perl 6 virtual machine. The goal was to ensure the future of the millions of lines of Perl 5 code at thousands of companies around the world.[49]

The PONIE project ended in 2006 and is no longer being actively developed. Some of the improvements made to the Perl 5 interpreter as part of PONIE were folded into that project.[50]

Name

Perl was originally named "Pearl". 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.[51]

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.[52]

The name is occasionally expanded as Practical Extraction and Report Language, but this is a backronym.[53] Other expansions have been suggested as equally canonical, including Wall's own humorous Pathologically Eclectic Rubbish Lister.[54] Indeed, Wall claims that the name was intended to inspire many different expansions.[55]

Camel symbol

The Camel symbol used by O'Reilly Media

Programming Perl, published by O'Reilly Media, features a picture of a dromedary camel on the cover and is commonly called the "Camel Book".[56] 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.[57] O'Reilly also provides "Programming Republic of Perl" logos for non-commercial sites and "Powered by Perl" buttons for any site that uses Perl.[57]

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.[58] The symbol is a visual pun on pearl onion.[59]

Overview

According to 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".[11]

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 allow variables to be interpolated directly into strings. However, unlike the shell, Perl uses sigils on all accesses to variables, and unlike most other programming languages that use sigils, the sigil doesn't denote the type of the variable but the type of the expression. So for example, to access a list of values in a hash, the sigil for an array ("@") is used, not the sigil for a hash ("%"). Perl also 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 operating 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. Also shared with Lisp are the implicit return of the last value in a block, and the fact that all statements have a value, and thus are also expressions and can be used in larger expressions themselves.

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. 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."[60]

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 was designed so that computer programmers could write programs more quickly and easily.

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",[56] 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's syntax reflects the idea that "things that are different should look different."[61] 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 a language such as Lisp, where the same basic syntax, composed of simple and universal Symbolic expressions, is used for all 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."[11] 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 by saying, "In general, they do what you want, unless you want consistency."[62]

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,[63] and several projects[64] 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.

Perl has chiefly been used to write CGI scripts: large projects written in Perl include cPanel, Slash, Bugzilla, RT, TWiki, and Movable Type; high-traffic websites that use Perl extensively include Priceline.com, Craigslist,[65] IMDb,[66] LiveJournal, DuckDuckGo,[67][68] Slashdot and Ticketmaster. It is also an optional component of the popular LAMP technology stack for Web development, in lieu of PHP or Python.

Perl is often used as a glue language, tying together systems and interfaces that were not specifically designed to interoperate, and for "data munging",[69] 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, often called "one-liner programs", can be entered and run on a single command line.

Perl code can be made portable across Windows and Unix; such 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 and WxPerl are commonly used to enable user interaction with Perl scripts. Such interaction may be synchronous or asynchronous, using callbacks to update the GUI.

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 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, file handles—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.[70] 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.[71] 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",[72] 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 is 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 (that not even Perl itself can always do). It was Kennedy who first conjectured that "parsing Perl suffers from the 'halting problem'",[73] which was later proved.[74]

Perl is distributed with over 250,000 functional tests for core Perl language and over 250,000 functional tests for core modules. 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 software 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.

Availability

Perl is dual licensed under both the Artistic License 1.0[3][4] and the GNU General Public License.[5] 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.[75]

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

The Comprehensive Perl Archive Network carries a complete list of supported platforms with links to the distributions available on each.[77] 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.[78] The distribution also includes the Perl package manager (PPM),[79] a popular tool for installing, removing, upgrading, and managing the use of common Perl modules. Included also is PerlScript, a Windows Script Host (WSH) engine implementing the Perl language. Visual Perl is an ActiveState tool that adds Perl to the Visual Studio .NET development suite.

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. Since Cygwin also includes gcc, compiling Perl from source is also possible.

A perl executable is included in several Windows Resource kits in the directory with other scripting tools.

Implementations of Perl come with the MKS Toolkit and UWIN.

Database interfaces

Perl's text-handling capabilities can be used for generating SQL queries; arrays, hashes, and automatic memory management make it easy to collect and process the returned data. For example, in Tim Bunce's Perl DBI application programming interface (API), the arguments to the API can be the text of SQL queries; thus it is possible to program in multiple languages at the same time (e.g., for generating a Web page using HTML, JavaScript, and SQL in a here document). The use of Perl variable interpolation to programmatically customize each of the SQL queries, and the specification of Perl arrays or hashes as the structures to programmatically hold the resulting data sets from each SQL query, allows a high-level mechanism for handling large amounts of data for post-processing by a Perl subprogram.[80] 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,[81] helping high-volume systems avert load spikes as in the Slashdot effect.

In modern Perl applications, especially those written using web 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 that 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.[82] 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.[83]

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 expected because the perl interpreter spent significant time finding modules within his over-large include path.[84] Unlike Java, Python, and Ruby, Perl has only experimental support for pre-compiling.[85] 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

Because Perl is an interpreted language, it can give problems when efficiency is critical; in such situations, the most critical routines can be written in other languages (such as C), which can be connected to Perl via simple Inline modules or the more complex but flexible XS mechanism.[86]

Perl 6

Main article: Perl 6
Camelia, the logo for the Perl 6 project.[87]

At the 2000 Perl Conference, Jon Orwant made a case for a major new language-initiative.[88] 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, which submitted more than 300 RFCs.

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" - 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 - numbered to correspond to Apocalypses.[89]

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.[90]

Thesis work by Bradley M. Kuhn, overseen by Wall, considered the possible use of the Java virtual machine as a runtime for Perl.[91] 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 acted as, 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.

As of 2012, a number of features in the Perl 6 language show similarities to Haskell.

As of 2012, Perl 6 development centers primarily around two compilers:[92]

  1. Rakudo Perl 6, an implementation running on the Parrot virtual machine and the Java virtual machine.[93] Developers are also working on MoarVM, a C language-based virtual machine designed specifically for Rakudo.[94]
  2. Niecza, which targets the Common Language Runtime.

Future of Perl 5

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,[35][95] followed by Perl 5.14.1 (released on June 17, 2011), Perl 5.16.1 (released on August 9, 2012.[96]), and Perl 5.18.0 (released on May 18, 2013). Perl 5 development versions are released on a monthly basis, with major releases coming out once per year.[97]

Future plans for Perl 5 include making the core language easier to extend from modules, and providing a small, extensible meta-object protocol in core.[98]

The relative proportion of Internet searches for 'Perl programming', as compared with similar searches for other programming languages, steadily declined from about 10% in 2005 to about 2% in 2011, and has remained around the 2% level since.[99]

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 Wall's first "State of the Onion" talk.[100]

State of the Onion

State of the Onion is the name for 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.[101]

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.[102] 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.[103]
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 in the same way that golf players seek to take as few shots as possible in a round. The phrase's first use[104] 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.[105] In subsequent years, the term "code golf" has been applied to the pastime in other languages.[106] 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.[107]
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. Perl poetry is made possible by the large number of English words that are used in the Perl language. New poems are regularly submitted to the community at PerlMonks.[108]

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 #dancer
irc.slashnet.org #perlmonks
irc.oftc.net #perl
irc.efnet.net #perlhelp
irc.rizon.net #perl
irc.debian.org #debian-perl (packaging Perl modules for Debian)

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.[109] 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,[110] which allows the program's source code to be "whitened" (i.e., all characters replaced with whitespace) and yet still work.

Example code

In older versions of Perl, one would write the Hello World program as:

print "Hello World!\n";

In later versions, which support the say statement, one can also write it as:

use 5.010;
say "Hello World!";

Good Perl practices require more complex programs to add the use strict; and use warnings; pragmas, leading into something like:

use strict;
use warnings;

print "Hello World!\n";

Here is a more complex Perl program, that counts down the seconds up to a given threshold:

#!/usr/bin/perl
use strict;
use warnings;
use IO::Handle;

my ( $remaining, $total );

$remaining = $total = shift(@ARGV);

STDOUT->autoflush(1);

while ( $remaining ) {
    printf ( "Remaining %s/%s \r", $remaining--, $total );
    sleep 1;
}

print "\n";

The perl interpreter can also be used for one-off scripts on the command line. The following example (as invoked from an sh-compatible shell, such as Bash) translates the string "Bob" in all files ending with .txt in the current directory to "Robert":

$ perl -i.bak -lp -e 's/Bob/Robert/g' *.txt

Criticism

Perl has been referred to as "line noise" by some programmers who claim its syntax makes it a write-only language. The earliest such mention was in the first edition of the book Learning Perl, a Perl 5 tutorial book written by Randal L. Schwartz,[111] in the first chapter of which he states: "Yes, sometimes Perl looks like line noise to the uninitiated, but to the seasoned Perl programmer, it looks like checksummed line noise with a mission in life."[112] He also stated that the accusation that Perl is a write-only language could be avoided by coding with "proper care".[112] The Perl overview document perlintro states that the names of built-in "magic" scalar variables "look like punctuation or line noise".[113] The perlstyle document states that line noise in regular expressions could be mitigated using the /x modifier to add whitespace.[114]

According to the Perl 6 FAQ, Perl 6 was designed to mitigate "the usual suspects" that elicit the "line noise" claim from Perl 5 critics, including the removal of "the majority of the punctuation variables" and the sanitization of the regex syntax.[115] The Perl 6 FAQ also states that what is sometimes referred to as Perl's line noise is "the actual syntax of the language" just as gerunds and prepositions are a part of the English language.[115] In a December 2012 blog posting, despite claiming that "Rakudo Perl 6 has failed and will continue to fail unless it gets some adult supervision", chromatic stated that the design of Perl 6 has a "well-defined grammar" as well as an "improved type system, a unified object system with an intelligent metamodel, metaoperators, and a clearer system of context that provides for such niceties as pervasive laziness".[116] He also stated that "Perl 6 has a coherence and a consistency that Perl 5 lacks."[116]

See also

References

  1. "Perl 5.24.0 is now available!". www.nntp.perl.org. Retrieved 2016-05-10.
  2. "Announcing Perl 5.25.7". perl.org. 2016-11-20. Retrieved 2016-11-20.
  3. 1 2 The "Artistic License" - dev.perl.org
  4. 1 2 Artistic - file on the Perl 5 git repository
  5. 1 2 "Perl Licensing". dev.perl.org. Retrieved 2011-01-08.
  6. "About Perl". perl.org. Retrieved 2013-04-20. "Perl" is a family of languages, "Perl 6" is part of the family, but it is a separate language that has its own development team. Its existence has no significant impact on the continuing development of "Perl 5".
  7. Lapworth, Leo. "General Questions About Perl". Perl FAQ. Perl.org. Retrieved February 24, 2012.
  8. "perl(1): Practical Extraction/Report Language - Linux man page". Linux.die.net. Retrieved 2013-07-23.
  9. Sheppard, Doug (2000-10-16). "Beginner's Introduction to Perl". dev.perl.org. Retrieved 2011-01-08.
  10. Ashton, Elaine (1999). "The Timeline of Perl and its Culture (v3.0_0505)".
  11. 1 2 3 4 Wall, Larry, Tom Christiansen and Jon Orwant (July 2000). Programming Perl, Third Edition. O'Reilly Media. ISBN 0-596-00027-8.
  12. "Language Evaluations". Perl's strongest point is its extremely powerful built-in facilities for pattern-directed processing of textual, line-oriented data formats; it is unsurpassed at this.
  13. "You Used Perl to Write WHAT?!". perl has always been the go-to language for any task that involves pattern-matching input
  14. "The Importance of Perl". Perl's unparalleled ability to process text...
  15. Smith, Roderick W. (June 21, 2002). Advanced Linux Networking. Addison-Wesley Professional. p. 594. ISBN 978-0-201-77423-8.
  16. Sheppard, Doug (2000-10-16). "Beginner's Introduction to Perl". O'Reilly Media. Retrieved 2008-07-27.
  17. Raymond, Eric (2003-12-23). "Swiss Army chainsaw". The Jargon File. Retrieved 2014-11-29.
  18. Leonard, Andrew. "The joy of Perl". Salon.com. Retrieved 2012-06-05.
  19. Larry Wall (1988-02-01). "v13i001: Perl, a "replacement" for awk and sed, Part01/10". Newsgroup: comp.sources.unix. Retrieved 2011-01-13.
  20. "perl.perl5.porters archive". perl.org. Retrieved 2011-01-13.
  21. "perlhist - the Perl history records". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  22. "CPAN". CPAN. Retrieved 2015-06-02.
  23. 1 2 "perl5004delta - what's new for perl5.004". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-08.
  24. Patwardhan, Nathan; Siever, Ellen; Spainhour, Stephen (2002). Perl in a Nutshell, Second Edition. O'Reilly Media. ISBN 978-0-596-00241-1.
  25. "perl5005delta - what's new for perl5.005". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  26. 1 2 3 4 5 6 7 8 9 10 11 "Perl Source". www.cpan.org. Retrieved 2015-12-01.
  27. "perl56delta - what's new for perl v5.6.0". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  28. "perl56delta - what's new for perl v5.6.x". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  29. Wall, Larry. "Apocalypse 1: The Ugly, the Bad, and the Good". Retrieved 2011-01-08.
  30. "perl58delta - what is new for perl v5.8.0". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  31. "A Plan for Pugs". O'Reilly Media. 2005-03-03. Retrieved 2011-01-27.
  32. Tang, Audrey (2010-04-21). "Re: How to Implement Perl 6 in Ten Years". PerlMonks. Retrieved 2011-01-03.
  33. "perl5100delta - what is new for perl 5.10.0". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-08.
  34. "perlsyn - Perl syntax". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-21.
  35. 1 2 "perl5120delta - what is new for perl v5.12.0". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-08.
  36. "perldelta - what is new for perl v5.12.3". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-08.
  37. 1 2 "perldelta - what is new for perl v5.16.0". Perl 5 version 16.0 documentation. metacpan.org. Retrieved 2012-05-21.
  38. "perl5180delta - what is new for perl v5.18.0 - Perl programming language". Perl 5 version 18.0 documentation. metacpan.org. Retrieved 2013-10-27.
  39. "perl5200delta - what is new for perl v5.20.0 - Perl programming language". Perl 5 version 20.0 documentation. metacpan.org. Retrieved 2014-05-27.
  40. Milestones in the Perl Renaissance - Modern Perl Programming. Modernperlbooks.com. Retrieved on 2013-07-17.
  41. Preface (Modern Perl 2011-2012). Modernperlbooks.com. Retrieved on 2013-07-17.
  42. Modern Perl 2011-2012 edition by chromatic | Onyx Neon Press. Onyxneon.com. Retrieved on 2013-07-17.
  43. http://www.enlightenedperl.org/
  44. "YAPC::NA 2013 - June 3-5, Austin, Texas". Yapcna.org. 2013-06-04. Retrieved 2014-04-11.
  45. Little, Stevan (2013-02-08). "What is Moe (a clarification) | Stevan Little". Blogs.perl.org. Retrieved 2014-04-11.
  46. "p2 on potion". Perl11.org. 2004-02-07. Retrieved 2014-04-11.
  47. "goccy/gperl 路 GitHub". Github.com. Retrieved 2014-04-11.
  48. "rperl". RPerl.org. Retrieved 2014-08-11.
  49. Geoff Broadwell (August 8, 2005), OSCON 4.4: Inside Ponie, the Bridge from Perl 5 to Perl 6, O'Reilly ONLamp Blog
  50. Jesse Vincent (August 23, 2006), Ponie has been put out to pasture, The Perl Foundation
  51. Richardson, Marjorie (1999-05-01). "Larry Wall, the Guru of Perl". Linux Journal. Retrieved 2011-01-03.
  52. "perlfaq1: What's the difference between "perl" and "Perl"?". perldoc.perl.org - Perl 5 version 12.2 documentation.
  53. Schwartz, Randal; foy, brian; Phoenix, Tom (June 16, 2011). Learning Perl. O'Reilly Media, Inc. p. 4. ISBN 978-1449313142. Perl is sometimes called the "Practical Extraction and Report Language," although it has also been called a "Pathologically Eclectic Rubbish Lister," among other expansions. It's actually a backronym, not an acronym, since Larry Wall, Perl’s creator, came up with the name first and the expansion later. That’s why "Perl" isn’t in all caps. There's no point in arguing that expansion is correct: Larry endorses both.
  54. Wall, Larry. "perl - The Perl language interpreter". Perl 5 version 12.2 documentation. Retrieved 2011-01-26.
  55. Wall, Larry. "Re^7: PERL as shibboleth and the Perl community". PerlMonks. Retrieved 2011-01-02.
  56. 1 2 Schwartz, Randal L; Phoenix, Tom; Foy, Brian. Learning Perl, Third Edition. ISBN 978-0-596-00132-2.
  57. 1 2 "The Perl Camel Usage and Trademark Information". O'Reilly Media. Retrieved 2011-01-09.
  58. "Perl Trademark". The Perl Foundation. Retrieved 2011-01-09.
  59. Gillmore, Dan (1998-10-25). "Republic Of Perl". Chicago Tribune. Retrieved 2011-01-10.
  60. "title unknown". 1997-05-10. Usenet: 199705101952.MAA00756@wall.org.
  61. Wall, Larry (1997-03-01). "Wherefore Art, Thou?". Linux Journal. Retrieved 2011-03-13.
  62. "perlfunc - Perl builtin functions". Perl 5 version 12.2 documentation. perldoc.perl.org. Retrieved 2011-01-10.
  63. "Perl 6 Specification". The Perl 6 Project. Retrieved 2011-01-27.
  64. "Perl 6 Compilers". The Perl 6 Project. Retrieved 2011-01-27.
  65. Gilmore, W. J. Beginning PHP and MySQL: From Novice to Professional, Fourth Edition. Apress. p. 484. ISBN 978-1-4302-3114-1.
  66. "IMDb Helpdesk: What software/hardware are you using to run the site?". Internet Movie Database. Retrieved 2011-02-12.
  67. DuckDuckGo handles a large amount of search queries at 4.5 million queries per day . https://duckduckgo.com/traffic.html
  68. DuckDuckGo uses Perl https://news.ycombinator.com/item?id=1500487
  69. "Perl Books - Book: Data Munging with Perl". Perl.org. Retrieved December 30, 2010.
  70. 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.
  71. Schwartz, Randal. "On Parsing Perl". Retrieved 2007-01-03.
  72. "The Perl Journal #19/9.26" (PDF). O'Reilly Media. Retrieved 2011-02-04.
  73. Kennedy, Adam (2006). "PPI—Parse, Analyze and Manipulate Perl (without perl)". CPAN.
  74. "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".
  75. Hietaniemi, Jarkko (1998). "Perl Ports (Binary Distributions)". CPAN.org.
  76. "The MacPerl Pages". Prime Time Freeware. 1997.
  77. "Perl Ports (Binary Distributions)". CPAN. Retrieved 2011-01-27.
  78. "ActivePerl is Perl for Windows, Mac, Linux, AIX, HP-UX & Solaris". ActiveState Software. Retrieved 2011-01-09.
  79. "Using PPM". ActiveState Software. Retrieved 2011-01-09.
  80. Descartes, Alligator; Bunce, Tim (2000). Programming the Perl DBI : [database programming with Perl] (1 ed.). Beijing [u.a.]: O'Reilly. ISBN 1-56592-699-4.
  81. Bekman, Stas. "Efficient Work with Databases under mod_perl". Retrieved 2007-09-01.
  82. "Alioth: The Computer Language Benchmarks Game: Project Info". Alioth. Retrieved 2011-01-13.
  83. "Which programs are fastest?". Computer Language Benchmarks Game. Alioth. Retrieved 2011-01-13.
  84. Leroy, Jean-Louis (2005-12-01). "A Timely Start". O'Reilly.
  85. Beattie, Malcolm & Enache Adrian (2003). "B::Bytecode Perl compiler's bytecode backend". CPAN.
  86. Ingerson, Brian. "Inline - metacpan.org". CPAN. Archived from the original on June 13, 2013. Retrieved 2011-01-26.
  87. "Perl 6". The Perl 6 Project. Retrieved 2011-02-27.
  88. Torkington, Nathan. "Transcription of Larry's talk". nntp.perl.org. Retrieved 2011-01-25.
  89. "Official Perl 6 Documentation". The Perl 6 Project. Retrieved 2011-01-25.
  90. "Perl 6 - dev.perl.org". dev.perl.org. Retrieved 2011-01-25.
  91. Kuhn, Bradley (January 2001). "Considerations on Porting Perl to the Java Virtual Machine". University of Cincinnati. Retrieved 2008-06-28.
  92. "Feature comparison of Perl 6 compilers".
  93. Worthington, Jonathan. "Rakudo JVM News: More tests, plus Thread and Promise prototypes". 6guts. Retrieved July 24, 2013.
  94. Worthington, Jonathan. "MoarVM: A virtual machine for NQP and Rakudo". 6guts. Retrieved July 24, 2013.
  95. "Perl 5.12.0 released - Update". Heise Media UK. 2010-04-13. Archived from the original on April 19, 2010. Retrieved 2011-01-08.
  96. "perl 5.16.1 released!". 2012-08-09. Retrieved 2012-08-26.
  97. "The unstoppable Perl release train?". LWN.net. 2012-02-29. Retrieved 2012-03-28.
  98. Dave Rolsky (2012-03-12). "Perl 5.16 and beyond". LWN.net.
  99. TIOBE Software Index (2013). "TIOBE Programming Community Index Perl". Retrieved 2013-10-10.
  100. Wall, Larry (2014-05-22). "Perl Culture (AKA the first State of the Onion)".
  101. Larry Wall. "2nd State of the Onion". Retrieved 2012-10-12. (Search for 'church')
  102. Randal L. Schwartz (1999-05-02). "Who is Just another Perl hacker?". Newsgroup: comp.lang.perl.misc. Usenet: m1hfpvh2jq.fsf@halfdome.holdit.com. Retrieved December 5, 2014.
  103. Schwartz, Randal (2005-03-31). "Canonical JAPH". PerlMonks. Retrieved 2011-05-16.
  104. Greg Bacon (1999-05-28). "Re: Incrementing a value in a slice". Newsgroup: comp.lang.perl.misc. Usenet: 7imnti$mjh$1@info2.uah.edu. Retrieved 2011-07-12.
  105. Back, Adam. "RSA in 5 lines of perl". Retrieved 2011-01-10.
  106. "Code Golf: What is Code Golf?". 29degrees. 2007.
  107. Gallo, Felix (2003). "The Zeroth Obfuscated Perl Contest". In Jon Orwant. Games, diversions, and Perl culture: best of the Perl journal (PDF). O'Reilly Media. Retrieved 2011-01-12.
  108. "Perl Poetry". PerlMonks. Retrieved 2011-01-27.
  109. Conway, Damian. "Lingua::Romana::Perligata -- Perl for the XXI-imum Century".
  110. Brocard, Leon (2014-05-22). "use Perl; Journal of acme". GrnLight.net.
  111. "Developer Update". Dr. Dobb's Developer Update. Miller-Freeman. 2. 1995.
  112. 1 2 Schwartz, Randal L. (1993). Learning Perl,. O'Reilly & Associates.
  113. "perlintro". Perl 5 version 18.0 documentation. Perl 5 Porters and perldoc.perl.org. Retrieved 2013-06-30.
  114. "perlstyle". Perl 5 version 18.0 documentation. Perl 5 Porters and perldoc.perl.org. Retrieved 2013-06-30.
  115. 1 2 "Perl 6 FAQ". Perl 6 Project. Retrieved 2013-06-30.
  116. 1 2 chromatic (2012-12-31). "The Implementation of Perl 5 versus Perl 6". Retrieved 2013-06-30.

Further reading

This article is issued from Wikipedia - version of the 12/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.