It's neither a Programming Language nor a Scripting Language, it's a Glue Language.

...sorry, just having a little fun. Now back to reality: Required reading for any Perl addict is perlintro, where it states the following:

What is Perl?
Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more.

The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). Its major features are that it's easy to use, supports both procedural and object-oriented (OO) programming, has powerful built-in support for text processing, and has one of the world's most impressive collections of third-party modules.

Different definitions of Perl are given in perl, perlfaq1 and no doubt other places. From this we can determine that Perl is different things to different people, but that lots of people think it's at least worth writing about.

perl, and perlfaq1 support this definition and further clarify, calling it "a high level programming language", among other things. I suppose the notion of Perl being a "scripting language" comes from its similarities to awk, sed, and shell script variants. Furthermore, programs written in Perl are frequently referred to as 'scripts', probably in part because the source code is readable by humans (a debatable point) and by the Perl interpreter, "on the fly". In other words, where C is compiled, then linked, and then the source code gets tossed out with the bathwater before product distribution, Perl programs (or scripts) remain in their script-like source format until the final moment before execution. ...and that final moment is pretty much invisible to the user. This rationale for the use of 'scripting language' when describing Perl is my own hypothesis, and I cannot cite a specific passage in scripture.


Dave


In reply to Re: perl is an scripting language or programming language? by davido
in thread perl is an scripting language or programming language? by perladdict

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.