Skip to content

Instantly share code, notes, and snippets.

@camlspotter
Created October 14, 2015 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camlspotter/d8e9492373739f300d35 to your computer and use it in GitHub Desktop.
Save camlspotter/d8e9492373739f300d35 to your computer and use it in GitHub Desktop.
(let
((Fib/0
(let*
((fib/1008
(lambda (n/1009)
(if (not (equal n/1009 0))
(if (not(equal n/1009 1))
(+ (funcall fib/1008 (- n/1009 1)) (funcall fib/1008 (- n/1009 2)))
1)
0))))
(let ((match/1011 (message (int-to-string (funcall fib/1008 10)))))
(list 0 fib/1008)))))
0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment