Skip to content

Instantly share code, notes, and snippets.

@tzafrirben
Created November 4, 2019 20:40
Show Gist options
  • Save tzafrirben/026a3c3d7757b0b28e14a68f951f631c to your computer and use it in GitHub Desktop.
Save tzafrirben/026a3c3d7757b0b28e14a68f951f631c to your computer and use it in GitHub Desktop.
(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