Python’s range() analog in Common Lisp
There is no built-in way of generating a sequence of numbers, the canonical way of doing so is to do one of: Use loop Write a utility function that uses loop An example implementation would be (this only accepts counting “from low” to “high”): (defun range (max &key (min 0) (step 1)) (loop for n … Read more