in reply to •Re: Re: •Re: Re: Listing Files
in thread Listing Files

Dear merlyn,

with your piece of code, I think there is the danger that people might use it without fully understanding what it is doing (see for example the cgi parameter "parser" by Matt's Script Archive, which may work in a certain script, but not in many others). And they will perhaps get into troubles when there is e.g. already something in @ARGV.

From the perl-point-of-view it's great, but from the learner's-point-of-view it may cause more problems than necessary.

I hope, this time I happened to explain my point of view in a better way.

Best regards,

ls

  • Comment on Re: •Re: Re: •Re: Re: Listing Files

Replies are listed 'Best First'.
•Re: Re: •Re: Re: •Re: Re: Listing Files
by merlyn (Sage) on Mar 04, 2002 at 14:38 UTC
    And they will perhaps get into troubles when there is e.g. already something in @ARGV.
    Which is why I explicitly cleared @ARGV in my snippet. I'm aware of that.

    It's idiomatic Perl to use diamond on @ARGV. If you don't know that, you haven't even read the Llama yet. I don't expect professional programmers to know less than the Llama before they maintain my code. And writing code that open-codes idiomatic Perl is less maintainable, not more.

    In a code review, you are optimizing for maintainence and reduced defects. @ARGV is the better solution there. If you don't see that, you're optimizing for beginners or something, but not for maintenance and reduced defects. That means you are going to cost your employer more money overall, and increase his risk, making you less hireable. Your choice.

    As I said, feel free to do this in the privacy of your own cubicle, but I will dock that on a code review.

    -- Randal L. Schwartz, Perl hacker

    A reply falls below the community's threshold of quality. You may see it by logging in.