Greatest common divisor: Difference between revisions

m
m (→‎{{header|Clojure}}: formatting)
Line 309:
(if (zero? b)
a
(recur b (mod a b)))) ; This is (gcd b (mod a b)), but with explicit tail call optimization.</lang>
</lang>
 
=={{header|c sharp|C#}}==
Anonymous user