Skip to content

Instantly share code, notes, and snippets.

@mzaglia
Created March 15, 2018 14:45
Show Gist options
  • Save mzaglia/81dba0c82739fc787dd219842e102170 to your computer and use it in GitHub Desktop.
Save mzaglia/81dba0c82739fc787dd219842e102170 to your computer and use it in GitHub Desktop.
gcd_clojure created by mzaglia - https://repl.it/@mzaglia/gcdclojure
(defn gcd [value1 value2]
(if (zero? value2)
value1
(recur value2 (mod value1 value2))))
(gcd 150 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment