Created
November 4, 2019 20:40
-
-
Save tzafrirben/026a3c3d7757b0b28e14a68f951f631c to your computer and use it in GitHub Desktop.
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 hello-world [] | |
(let [lines (map-indexed (fn [index ch] | |
(str (->> | |
(repeat " ") | |
(take index) | |
(apply str)) ch)) "Hello World")] | |
(string/join "\n" lines))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment