Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active July 27, 2019 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trikitrok/71418b2b09288af7006b7d2020db988b to your computer and use it in GitHub Desktop.
Save trikitrok/71418b2b09288af7006b7d2020db988b to your computer and use it in GitHub Desktop.
(ns fizzbuzz-pbt.core)
(defn fizzbuzz []
(take 100 (map #(str %1 %2)
(cycle ["" "" "Fizz"])
(cycle ["" "" "" "" "Buzz"]))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment