Perl Programming Question:
When would local $_ in a function ruin your day?
Answer:
When your caller was in the middle for a while(m//g) loop
The /g state on a global variable is not protected by running local on it. That'll teach you to stop using locals. Too bad $_ can't be the target of a my() -- yet.
The /g state on a global variable is not protected by running local on it. That'll teach you to stop using locals. Too bad $_ can't be the target of a my() -- yet.
Previous Question | Next Question |
How do I read command-line arguments with Perl? | What happens to objects lost in "unreachable" memory..... ? |