summaryrefslogtreecommitdiff
path: root/topics
diff options
context:
space:
mode:
Diffstat (limited to 'topics')
-rw-r--r--topics/lisp/lisp4schemers.gmi4
1 files changed, 4 insertions, 0 deletions
diff --git a/topics/lisp/lisp4schemers.gmi b/topics/lisp/lisp4schemers.gmi
index 9088092..f0ee1af 100644
--- a/topics/lisp/lisp4schemers.gmi
+++ b/topics/lisp/lisp4schemers.gmi
@@ -12,6 +12,10 @@ $1 = (0 1 2 3 4 5 6 7 8 9 10 11)
### In Common Lisp
+The Common Lisp loop macro is not without its problems. See the paper "Don't Loop, Iterate" linked below. The paper compares different iteration mechanisms and promotes the author's own iterate macro. Personally, I think Scheme's approach with SRFI-1 is much cleaner. Explicit iteration is often distracting. Recursion is often what the programmer really wants.
+
+=> https://common-lisp.net/project/iterate/doc/Don_0027t-Loop-Iterate.html Don't Loop, Iterate
+
```
CL-USER: (loop for i below 12 collect i)