in reply to RE: Re: Scoped Variables in a Recursive Function.
in thread Scoped Variables in a Recursive Function.

That ought to work, but it's silly, since it creates a code reference EVERY TIME you run Merge(). There's no reason to use a code reference. Define Merge() and MergeSort() in the same block, and have @array be shared between them.

$_="goto+F.print+chop;\n=yhpaj";F1:eval
  • Comment on RE: RE: Re: Scoped Variables in a Recursive Function.

Replies are listed 'Best First'.
RE: RE: RE: Re: Scoped Variables in a Recursive Function.
by Adam (Vicar) on Sep 28, 2000 at 23:59 UTC
    Yeah, I was thinking about that... I think you are right.