in reply to can this perl script be explained how and what it is going on...????

Without context that script is meaningless. Also local our @deep is nonsensical :)
  • Comment on Re: can this perl script be explained how and what it is going on...????
  • Download Code

Replies are listed 'Best First'.
Re^2: can this perl script be explained how and what it is going on...????
by ikegami (Patriarch) on Dec 03, 2009 at 16:56 UTC
    It's not nonsense, but it is wrong.
    local our @deep; ... *deep = $entry;
    should be
    our @deep; local *deep; ... *deep = $entry;
    or
    our @deep; ... local *deep = $entry;

    Te code assigns to *deep, so it's *deep that needs to be localised.