|
|
|
|
|
by Avshalom
3773 days ago
|
|
Racket doesn't get quite as bad (well it does but it tries to keep things looking like S-exps) but consider CL's Loop macro http://www.unixuser.org/~euske/doc/cl/loop.html loop is (from what I understand) idiomatic too. Yes it's a macro (so is (defun ...) though) but it's syntax a CLer needs to know in order to deal with CL in the wild. Format is famously even worse. |
|
https://common-lisp.net/project/iterate/
Even the ITA/Google style guide says to avoid loop if possible:
https://google.github.io/styleguide/lispguide.xml#Iteration