Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

They only rated their Perl skill

by arhuman (Vicar)
on Jan 02, 2002 at 22:30 UTC ( [id://135746]=note: print w/replies, xml ) Need Help??


in reply to Perl's rank among languages

Alas, on the frontpage (in red) you can read :

Hi, the shootout is an unfinished project. I've decided to discontinue updates to it for now while I work on some other things. Thanks for everyone's help.

Which is really a sad thing as their perl code is crippled, with unnecessary code :
(lines number is part of their scoring system)
  • useless variables initialization (my %hash=())
  • useless buffering
    while (read(STDIN, $_, 4095)) { $_ .= <STDIN>; ... }
    instead of
    while(<STDIN>) { ... }
  • some examples seem really partial to me :
    echo `wc` is allowed for bash, whereas the Perl solution don't use the one line solution (print `wc`;)
  • ad nauseaum...

"Only Bad Coders Code Badly In Perl" (OBC2BIP)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://135746]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (9)
As of 2024-04-23 21:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found