in reply to Re: can this perl script be explained how and what it is going on...????
in thread can this perl script be explained how and what it is going on...????
should belocal our @deep; ... *deep = $entry;
orour @deep; local *deep; ... *deep = $entry;
our @deep; ... local *deep = $entry;
Te code assigns to *deep, so it's *deep that needs to be localised.
|
|---|