Created
November 5, 2019 14:03
-
-
Save tzafrirben/55eebcbc3fb4b47659d5817c7044a444 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 [] | |
(loop [hello-world "Hello World" | |
spaces "" | |
diagonal []] | |
(if-not (seq hello-world) | |
(string/join "\n" diagonal) | |
(recur (rest hello-world) | |
(str spaces " ") | |
(conj diagonal (str spaces (first hello-world))))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment