


![[top]](top.gif)
setrecursionlimit ZZ -- set the limit on recursion
Synopsis:
Each time a function is called, the recursion depth is incremented by
1, and each time a function returns, the recursion depth is decremented.
This limit on recursion depth is a way to detect infinite loops.



![[top]](top.gif)