-
-
Save fstamour/e3bdafb72d3c9b037f6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun iota (m &optional (n 1) (step 1)) | |
(defun iter (m n lst) | |
(cond ((> n m) (reverse lst)) | |
(t (iter m (+ n step) (cons n lst))))) | |
(iter m n nil)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment