http://www.perlmonks.org?node_id=390659


in reply to Re: Global variable vs passing variable from sub to sub
in thread Global variable vs passing variable from sub to sub

If unexpected changes are occurring to it, you will want to find where it is being changed. You will have little choice but to step through the code line by line in the debugger to find the offending code. This can be tedious.

...

And the really great thing with this approach is that if you have some errant code that is setting $var to some wacky value, or incrementing it when you don't expect it, all you have to do is to hang a breakpoint off the name of the sub in the debugger, and then just let it run at full clip until the routine gets called. Much less tedious.

By tie()ing the global variable you can add the same functionality and get the same benefit that of a subroutine wrapper in your examples. Then you even get compile-time spelling checks. ;-)

ihb

Read argumentation in its context!