Find limit of recursion: Difference between revisions

Content deleted Content added
No edit summary
m adding maxima
Line 799:
 
2500</lang>
 
=={{header|Maxima}}==
<lang maxima>f(p) := f(n: p + 1)$
f(0);
Maxima encountered a Lisp error:
Error in PROGN [or a callee]: Bind stack overflow.
Automatically continuing.
To enable the Lisp debugger set *debugger-hook* to nil.
 
n;
406</lang>
 
=={{header|MUMPS}}==