Difficulty in implementing tail recursive calls in C (stackoverflow.com) 3 points by anuragpeshne 11y ago ↗ HN
[–] kazinator 11y ago ↗ Common Lisp has no stanadrd-defined support for tail recursion (though compilers do).I was able to easily hack up portable tail recursion using macros and whatnot.http://www.kylheku.com/cgit/lisp-snippets/tree/tail-recursio...No need to drop into the compiler level.
1 comment
[ 2.6 ms ] story [ 14.6 ms ] threadI was able to easily hack up portable tail recursion using macros and whatnot.
http://www.kylheku.com/cgit/lisp-snippets/tree/tail-recursio...
No need to drop into the compiler level.