Skip to content

Instantly share code, notes, and snippets.

@garsue
Created June 30, 2013 23:57
Show Gist options
  • Save garsue/5897550 to your computer and use it in GitHub Desktop.
Save garsue/5897550 to your computer and use it in GitHub Desktop.
(defun range (start size step)
(when (> size 0)
(cons start (range (+ start step) (1- size) step))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment