in reply to Re^4: Cool example of list assignment usage
in thread Cool example of list assignment usage

I don't think =()= is very common. I've seen a lot of perl code and never seen this idiom. Is it in one of the books or man pages?

You're correct about the missing /g. The extra parentheses are there to make it easier for me to read, although perl doesn't need them.

Replies are listed 'Best First'.
Re^6: Cool example of list assignment usage
by blazar (Canon) on Jul 23, 2007 at 17:59 UTC
    You're correct about the missing /g. The extra parentheses are there to make it easier for me to read, although perl doesn't need them.

    You see? Different people have different preferences and tastes, unnecessary parens tend to make stuff more difficult for me to read in say 99% of cases.