in reply to RE: RE: RE: Obfuscate my perl code
in thread Obfuscate my perl code

This was my thought as well, but some cool tricks look to me somewhat like obfuscated.
So I might redefine: How obfuscated is effective perl?
Have a nice day
All decision is left to your taste

Replies are listed 'Best First'.
RE: RE: RE: RE: RE: Obfuscate my perl code
by Fastolfe (Vicar) on Oct 27, 2000 at 18:56 UTC
    Depends on your definition of 'effective'. If you're writing for readability and maintainability, I would say that an effective Perl script isn't obfuscated at all. If you're wanting to take advantage of some efficiency tricks via map and complex data structures (via references), your code becomes slightly harder to read. If you're making use of aliasing and other "magic", things become harder still, but with ample documentation and consistent style, none of this has to appear obfuscated.