common lisp jargon - there improved way?
i myself doing arrange thing time. i've deliberation minute macro/function arrange thing easier, nonetheless occurs me i'm substantially reinventing wheel.
is there an existent duty let me accomplish same arrange thing some-more succinctly?
(defun remove-low-words (word-list)
"return list difference deficient measure removed."
(let ((result nil))
(dolist (word word-list)
(when (good-enough-score-p word) (push result)))
result))
Comments
Post a Comment