Skip to content

Instantly share code, notes, and snippets.

@edlich
Created October 28, 2013 08:13
Show Gist options
  • Save edlich/7193080 to your computer and use it in GitHub Desktop.
Save edlich/7193080 to your computer and use it in GitHub Desktop.
Task: reverse and pad a string.
(def s "Lagergeral") ;; test this in tryclj.com line by line
(print (apply str (concat (reverse "Lagergeral") (repeat (- 20 (count s)) "#"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment