Last active
December 20, 2017 03:17
-
-
Save alandipert/1156115 to your computer and use it in GitHub Desktop.
FizzBuzz, the fib of pattern matching
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; FizzBuzz, the fib of pattern matching | |
;; with https://github.com/clojure/core.match | |
(require '[clojure.core.match :refer [match]]) | |
(doseq [n (range 1 101)] | |
(println (match [(mod n 3) (mod n 5)] | |
[0 0] "FizzBuzz" | |
[0 _] "Fizz" | |
[_ 0] "Buzz" | |
:else n))) |
Nice!
Love it!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That f'ing rocks. :)