in reply to Why Use Perl?

Update: as pointed out to me, perlcc'ing a perl script does not gain any benefits during runtime compared to intepreting that script, so the second comment on the first point is null & void. However, the fact that avoiding the compilation step to just test and debug code is a definite benefit.


Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain

Replies are listed 'Best First'.
Re (tilly) 2: Why Use Perl?
by tilly (Archbishop) on Mar 25, 2001 at 20:20 UTC
    As discussed in chatter, the benefits of compilation using perlcc are that you can claim it is compiled and waste disk space. There are no performance benefits (indeed loading time generally increases), it wastes memory, and introduces new bugs...

    So why do it?

    I wouldn't know because I don't. :-)