[lang-ref] ( greatest_common_divisor ) ( python )

def test_greatest_common_divisor():
    # math.gcd
    r = math.gcd(4, 12, 20)
    assert r == 4