1
0
forked from M-Labs/artiq
artiq/lit-test/py2llvm/typing/gcd.py
2015-06-15 16:55:13 +03:00

13 lines
178 B
Python

# RUN: %python -m artiq.py2llvm.typing %s >%t
def _gcd(a, b):
if a < 0:
a = -a
while a:
c = a
a = b % a
b = c
return b
_gcd(10, 25)