Created
June 21, 2018 01:40
-
-
Save jacksonh/8898e431c726e35618f9cfe0b38ca6cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn exp [x n] | |
(if (= n 0) 1 | |
(* x (exp x (- n 1))) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment