|
|
Log in / Subscribe / Register

Perl gets a bad rap

Perl gets a bad rap

Posted Jan 10, 2007 21:45 UTC (Wed) by dns (subscriber, #4239)
In reply to: Ouch!!! by moxfyre
Parent article: Optaros publishes an open source catalog

Perl is permissive by default, and hence *can* be used
for amateur programming. But it doesn't have to be
used that way.

In my company we have a very large and complex Perl
program in a mission-critical role. Every single
file in its code-base begins with:

use 5.006_000;
use warnings;
use strict;
use Carp;

And we use both object-oriented and functional styles
of programming in a highly-maintainable way.


to post comments

Perl gets a bad rap

Posted Jan 10, 2007 22:13 UTC (Wed) by moxfyre (guest, #13847) [Link]

I agree... I've used Perl to write maintainable code too. But I've used it to write a lot of spaghetti-like junk as well, and then tried to shoehorn that into my better code :-)


Copyright © 2026, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds