in reply to Why update perl?

One reason to update would certainly be the ability to write better (as in more professional) code.
In perl5.6+ you have e.g. Attributes, which are a big aid in writing professional code (I use them for making abstract methods and such).
An other issue would be, that you can throw error objects
die MyPackage::Exception::DeadByDawn->new
This makes clean programming practices possible.
And I guess a lot more stuff can be thought off ;-)

But I guess this is only valid if you are still evolving your coding style, to get it more aligned with modern development practices. If you are happy with how you do it and you produce a stable code base then don't bother

Johan

Replies are listed 'Best First'.
Re: Re: Why update perl?
by IlyaM (Parson) on Oct 14, 2002 at 13:23 UTC
    An other issue would be, that you can throw error objects.

    FYI This Perl feature was introduced in 5.005xx.

    --
    Ilya Martynov (http://martynov.org/)

Re: Re: Why update perl?
by John M. Dlugosz (Monsignor) on Oct 14, 2002 at 20:48 UTC
    Why do you find Attributes such a big deal? (You may want to post a new top-level thread on it) I've seen very little about them, and they've changed between versions I think.