Skip to content

Instantly share code, notes, and snippets.

@rigidus
Created September 12, 2012 19:21
Show Gist options
  • Save rigidus/3709253 to your computer and use it in GitHub Desktop.
Save rigidus/3709253 to your computer and use it in GitHub Desktop.
(loop for i from 1 to 100 do
(print (cond ((zerop (mod i (* 3 5))) "FizzBuzz")
((zerop (mod i 3)) "Fizz")
((zerop (mod i 5)) "Buzz")
(t i))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment