Skip to content

Instantly share code, notes, and snippets.

@lackneets
Created February 8, 2016 17:35
Show Gist options
  • Save lackneets/64b82002712546a5933b to your computer and use it in GitHub Desktop.
Save lackneets/64b82002712546a5933b to your computer and use it in GitHub Desktop.
(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