Find limit of recursion: Difference between revisions

Added Eralng
m (→‎{{header|COBOL}}: Fixed tags)
(Added Eralng)
Line 490:
 
The limits can be increased with <code>setq</code> etc globally, or <code>let</code> etc temporarily. Lisp code which knows it needs deep recursion might temporarily increase the limits. Eg. <code>regexp-opt.el</code>. The ultimate limit is memory or C stack.
 
=={{header|Erlang}}==
Erlang has no recursion limit. It is tail call optimised. If the recursive call is not a tail call it is limited by available RAM. Please add what to save on the stack and how much RAM to give to Erlang and I will test that limit.
 
=={{header|Forth}}==
Anonymous user