Last active
August 14, 2022 18:48
-
-
Save JoshuaFox/16852e4276d3a0d4983073b4ccc7162e to your computer and use it in GitHub Desktop.
Squares.clj
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)) | |
(defn squares [] (map square (range 4))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment