pub fn gcd(a: i64, b: i64) -> StrResult<i64>
Calculates the greatest common divisor of two integers.
This will error if the result of integer division would be larger than the maximum 64-bit signed integer.
#calc.gcd(7, 42)