Created
February 8, 2016 17:35
-
-
Save lackneets/64b82002712546a5933b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define gcd | |
(lambda (a b) | |
(cond | |
((> b a) (gcd a (- b a))) | |
(else b) | |
) | |
) | |
) | |
(gcd 5120 65536) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment