Skip to content

Instantly share code, notes, and snippets.

@Arakaki
Created August 14, 2014 13:10
Show Gist options
  • Save Arakaki/24908f1861fc0971b227 to your computer and use it in GitHub Desktop.
Save Arakaki/24908f1861fc0971b227 to your computer and use it in GitHub Desktop.
(defn in-fizz-buzz [i]
(condp #(= (mod %2 %1) 0) i
15 "Fizz Buzz"
3 "Fizz"
5 "Buzz"
i))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment