RosettaCodeData/Task/Greatest-common-divisor/Gnuplot/greatest-common-divisor-1.gnuplot

2 lines
41 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
gcd (a, b) = b == 0 ? a : gcd (b, a % b)