Skip to content

Instantly share code, notes, and snippets.

@jlouiss
Created July 15, 2020 16:46
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 jlouiss/90b8ec082ebe751b54a2b9f5196ba066 to your computer and use it in GitHub Desktop.
Save jlouiss/90b8ec082ebe751b54a2b9f5196ba066 to your computer and use it in GitHub Desktop.
(defun factorial (n)
(if (= n 0) 1
(* n (factorial (- n 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment