sync from Atlas

This commit is contained in:
Luciano Ramalho
2021-10-12 22:37:28 -03:00
parent 43f1bf23b3
commit 6fb0832c40
7 changed files with 31 additions and 34 deletions

View File

@@ -147,7 +147,7 @@ def test_factorial():
gcd_src = """
(define (mod m n)
(- m (* n (// m n))))
(- m (* n (quotient m n))))
(define (gcd m n)
(if (= n 0)
m