Find limit of recursion: Difference between revisions

Pari/GP
(add language: Retro)
(Pari/GP)
Line 458:
 
With non-tail recursive functions, the number of recursions is only limited by the available memory.
 
=={{header|PARI/GP}}==
From the documentation:
<lang>dive(n) = dive(n+1)
dive(0)</lang>
 
=={{header|PicoLisp}}==