Slashdot Mirror


Perl 5.14 Released

chromatic writes "Pumpking Jesse Vincent has just released Perl 5.14, the latest stable version of the venerable Perl 5 programming language. The list of changes in Perl 5.14 includes several enhancements, including performance tuning, Unicode improvements, and updates to the core libraries and documentation. Perl 5.16 is on track for a release next April."

5 of 187 comments (clear)

  1. Re:What about Perl 6? by nysus · · Score: 4, Funny

    I was just going to say that back in about 2001 someone gave me advice not to learn Perl 5 because a Perl 6 release was imminent.

    --

    ---Technology will liberate us if it doesn't enslave us first.

  2. The question nobody wants to ask.... by cowboy76Spain · · Score: 3, Funny

    .... does it have any new operator? :-P

    And before you tell, it was just a joke, I know you should now add operators in a minor release.

    --
    Why can't /. have a rich-text editor? Editing your own HTML is so XXth century.
  3. Re:Meh. by Anonymous Coward · · Score: 2, Funny

    Where do I sign up?

  4. Re:but the power by Galactic+Dominator · · Score: 1, Funny

    Nobody's mind is in a good shape after coding in Perl. Even reading it can cause mild permanent brain damage. Someone who writes a reasonably complex app in Perl has a very good chance of developing an uncontrollable homicidal rage and other social problems. For example, I hear the Unibomber, Timothy McVeigh, Dieter Simader, and bin Laden are all accomplished Perl grey beards.

    --
    brandelf -t FreeBSD /brain
  5. Re:Perl - the COBOL of scripting languages by Mozai · · Score: 3, Funny

    php5 is simpler?  What planet do you live on?

    In Perl:
    curl -sL 'http://slashdot.org/index.rss' |perl -ne 'm/<title>(.+?)</ && print "- $1\n";'

    Same thing in PHP5:
    curl -sL 'http://slashdot.org/index.rss' |php5 -r '$h = fopen("php://stdin","r"); while(! feof($h)){$line=fgets($h); if(preg_match("/<title>(.+?)</",$line,$match)){echo "- ".$match[1]."\n";}}'

    ... and if you say "well, php5 is simpler for what *I* need," I'mma gonna poke you for thinking that everyone else has the same needs as you.