To my surprise, in his answer, an OCaml guru defined Perl as a "domain specific language for string munging".

Why did this surprise you? It's really just a shorter way of saying

Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information.

...I assume you recognise the source of that quotation? :)

There's a grain of truth in all the other clichés you cite. Java can be considered more portable than C, even though C can be compiled on more platforms than the JVM: Java is more portable in the sense that a single JAR file can run on any supported architecture. OCaml can be considered nearly as fast as C, even though idiomatic OCaml is usually much slower than C: OCaml is fast in the sense that you can rewrite speed-critical sections in an imperative style without having to switch to a different language. And so forth.

Remember that you are a monk, and instead of accepting or rejecting each cliché at face value, meditate on the words and find the nugget of truth within.


In reply to Re: Revisiting the old clichés of programming languages by Porculus
in thread Revisiting the old clichés of programming languages by citromatik

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.