Perl interpreter: Difference between revisions
m Reverted edits by 208.179.223.62 (talk) to last version by Ian Pitchford |
m sp (3): a open→an open, interwined→intertwined, redundent→redundant |
||
Line 1: | Line 1: | ||
'''Perl interpreter''', or '''perl''' is |
'''Perl interpreter''', or '''perl''' is an open-source software running on multiple platforms, that parses and executes the scripts written in the [[Perl]] script-language. |
||
==Overview== |
==Overview== |
||
Line 7: | Line 7: | ||
</pre> |
</pre> |
||
Aside from the virtue that it is able to parse the complicatedly |
Aside from the virtue that it is able to parse the complicatedly intertwined, hugely syntactically redundant language Perl, the perl program also handles other routine jobs as a script [[Running Environment]], such as [[Memory management]], [[Dynamic linking]] and [[Flow Control]]. And it does the job nicely that these are virtually transparent to the programmers and users of the Perl language. |
Revision as of 21:18, 14 June 2006
Perl interpreter, or perl is an open-source software running on multiple platforms, that parses and executes the scripts written in the Perl script-language.
Overview
perl (the initial p shouldn't be capitalized) is the standard parser that parses the Perl language. It is usually referred to when you read a Perl script on a Unix-like platform, and the first line is usually like this:
#!/usr/bin/perl
Aside from the virtue that it is able to parse the complicatedly intertwined, hugely syntactically redundant language Perl, the perl program also handles other routine jobs as a script Running Environment, such as Memory management, Dynamic linking and Flow Control. And it does the job nicely that these are virtually transparent to the programmers and users of the Perl language.