in reply to Scoped Variables in a Recursive Function.
{ my @array; sub Merge { @array = @_; MergeSort(0, $#array); } sub MergeSort { # can see @array here... } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Scoped Variables in a Recursive Function.
by Adam (Vicar) on Sep 28, 2000 at 19:46 UTC | |
by japhy (Canon) on Sep 28, 2000 at 21:12 UTC | |
by Adam (Vicar) on Sep 28, 2000 at 23:59 UTC |