Skip to content

Instantly share code, notes, and snippets.

@joekarma
Forked from meadhikari/gist:3873415
Created October 13, 2012 08:32
Show Gist options
  • Save joekarma/3883827 to your computer and use it in GitHub Desktop.
Save joekarma/3883827 to your computer and use it in GitHub Desktop.
First common lisp function
(loop :for n :from 1 :below 1000
:when (or (zerop (mod n 3))
(zerop (mod n 5)))
:sum n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment