Last active
December 26, 2019 04:38
-
-
Save barkanido/e14b99aa5d7e64d305f10385a8075222 to your computer and use it in GitHub Desktop.
a simple clojure function
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
(defn foo [a b] | |
(let [x (+ a b)] | |
x)) | |
(def result (foo 3 4)) | |
result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment