Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created July 27, 2014 19:00
Show Gist options
  • Save rightfold/1f68397a06ac0cfff37f to your computer and use it in GitHub Desktop.
Save rightfold/1f68397a06ac0cfff37f to your computer and use it in GitHub Desktop.
(defn tentacle-piece [index]
(cond
(zero? index) " /\\"
(odd? index) "/o/"
(even? index) "\\ \\"))
(defn tentacle [length]
(clojure.string/join "\n" (map tentacle-piece (range length))))
(println (tentacle 16))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment