in reply to Re: Euclid's Algorithm: A Homage to Tilly
in thread Euclid's Algorithm: A Homage to Tilly

Fewer moving parts.
sub gcd { my ($n, $m) = @_; $m ? gcd($m, $n%$m) : $n; }
But is worrying about this a false path?