Skip to content

Instantly share code, notes, and snippets.

@fffej
Created February 16, 2021 12:09
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 fffej/25bb253173ecbd09d06f5dad19e512bf to your computer and use it in GitHub Desktop.
Save fffej/25bb253173ecbd09d06f5dad19e512bf to your computer and use it in GitHub Desktop.
(defun fib (n)
"Compute the nth number in the Fibonacci sequence."
(if (<= n 1) 1
(+ (fib (- n 1) (fib (- n 2))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment