Greatest common divisor: Difference between revisions

Implementation of GCD in Uiua
imported>Polarit
mNo edit summary
imported>OneEyed
(Implementation of GCD in Uiua)
Line 6,853:
return b ? gcd_rec(b, a % b) : Math.abs(a);
}</syntaxhighlight>
 
== [[:Category:Uiua|Uiua]] ==
<syntaxhighlight>
⊙◌⍢(⊃∘◿:)(±,)
</syntaxhighlight>
 
=={{header|UNIX Shell}}==
Anonymous user