My code is an example for real problem.
How can change this value "50" ?
Why produce Segmentation fault ?
"Peter M. Jansson" wrote:
>
> Don't do that! You have an infinite recursion here. You need to include
> some condition in the code which will stop the recursive calls to "x" at
> some point (preferably before 50 levels of recursion).
>
> On 1/16/02 12:08 PM, "Chiriac Petrica Clement" <[EMAIL PROTECTED]> wrote:
>
> > This code produce "Segmentation fault"
> >
> > proc x {} {
> > puts [info level]
> > catch {
> > x
> > }
> > }
--
Petrica Clement Chiriac