calc.gcd
Calculate the greatest common divisor of two integers.
Example
#calc.gcd(7, 42)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
a
The first integer.
b
The second integer.