recur
recur copied to clipboard
Self-tail recursion optimization in emacs.
Results
1
recur issues
Sort by
recently updated
recently updated
newest added
A simple case: ``` (recur-defun* ¬ (&optional a b) (message (prin1-to-string (list a b))) (if (> a b) (recur (- a b) b) b)) (¬ 10 1) ; Inspecting the...