Created
September 4, 2019 13:45
-
-
Save lsdr/fbbc43a0d8df696bb458fa0f812da042 to your computer and use it in GitHub Desktop.
Simplest Clojure example script
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 square [x] (* x x)) | |
(println (take 25 (map square (range)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment