Skip to content

Instantly share code, notes, and snippets.

@6ewis
Created April 25, 2015 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 6ewis/48968c8d338a1e10424a to your computer and use it in GitHub Desktop.
Save 6ewis/48968c8d338a1e10424a to your computer and use it in GitHub Desktop.
(def adjs ["Alice is normal" "Alice is too small" "Alice it too big" "Alice is swimming"])
(defn alice-is [in out] (if (empty? in)
out
(alice-is (rest in)
(conj out (str "Alice is " (first in)))
)
)) (alice-is adjs [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment