Greatest common divisor: Difference between revisions

m
imported>OneEyed
(Implementation of GCD in Uiua)
Line 2,637:
=={{header|EasyLang}}==
 
<syntaxhighlight lang="text">
func gcd a b .
while b <> 0
hswap =a b
b = ab mod ba
a = h
.
return a
2,063

edits