Created
February 27, 2018 00:26
-
-
Save theRemix/b21bcfa0b6ae7ddcf1098dd7b9708b73 to your computer and use it in GitHub Desktop.
CompatibleTrivialFtpclient created by theRemix - https://repl.it/@theRemix/CompatibleTrivialFtpclient
This file contains hidden or 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
(let [base 3, | |
exp 2] | |
(do | |
(defn multiply [x, y] | |
(* x y)) | |
(defn exponent [x, y] | |
(reduce multiply (mapv (fn [_] x) (range y)))) | |
(exponent base exp))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment