Is there any limit to recursion in lisp?

Posted by Isaiah on Stack Overflow See other posts from Stack Overflow or by Isaiah
Published on 2010-06-08T01:22:17Z Indexed on 2010/06/08 1:32 UTC
Read the original article Hit count: 393

I enjoy using recursion whenever I can, it seems like a much more natural way to loop over something then actual loops. I was wondering if there is any limit to recursion in lisp? Like there is in python where it freaks out after like 1000 loops? Could you use it for say, a game loop?

Testing it out now, simple counting recursive function. Now at >7000000!

Thanks alot

© Stack Overflow or respective owner

Related posts about game-development

Related posts about recursion