in reply to Re: sub routines inside subroutines
in thread sub routines inside subroutines

It more like you will loose track of what you can and can't call if you start nesting subroutines. And when that happens, you might introduce a security hole or two.

--
$Stalag99{"URL"}="http://stalag99.keenspace.com";

  • Comment on Re: Re: sub routines inside subroutines

Replies are listed 'Best First'.
Re: Re: Re: sub routines inside subroutines
by cleen (Pilgrim) on Feb 27, 2001 at 22:48 UTC
    Which brings me to another question, is there any reason to use nested subroutines? IE a practicle use for them other then they are nested, since they dont share variables from the upper routine in which its nested from?