euclidean algorithm

Run Settings
LanguageClojure
Language Version
Run Command
(defn euclidean-alg [x y] (if (zero? y) x (euclidean-alg y (mod x y)))) (println (euclidean-alg 15 35))
Editor Settings
Theme
Key bindings
Full width
Lines