Skip to content

Instantly share code, notes, and snippets.

@fstamour
Forked from chomy/iota.lisp
Created May 3, 2014 15:07
Show Gist options
  • Save fstamour/e3bdafb72d3c9b037f6f to your computer and use it in GitHub Desktop.
Save fstamour/e3bdafb72d3c9b037f6f to your computer and use it in GitHub Desktop.
(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