Skip to content

Instantly share code, notes, and snippets.

@MitchCarroll
Created January 21, 2013 20:16
Show Gist options
  • Save MitchCarroll/4588917 to your computer and use it in GitHub Desktop.
Save MitchCarroll/4588917 to your computer and use it in GitHub Desktop.
factorial.lisp
(defun ! (n)
(if (= n 0) 1
(* n (! (- n 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment