in reply to Re: (jeffa) 3Re: seeking different ways to slice a 2-d array
in thread seeking different ways to slice a 2-d array
Oops. It's so easy to slip... But on the other hand, you have to misspell the variable throughout all of &write_cache, which usually isn't too probable. But for short routines--like get/set routines--it's a not too far-fetched scenario.sub read_cache { our %CACHE; ... } sub write_cache { our %CACHF; ... }
The only reason I want more education is that I learned about lexical and package variables as totally separate!!! and now they ain't... Which is cool, but also pretty bizarre.{ our %CACHE; sub read_cache { ... } sub write_cache { ... } }
|
---|