artiq/lit-test/py2llvm/typing/gcd.py

13 lines
178 B
Python
Raw Normal View History

2015-06-15 21:55:13 +08:00
# 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)