Skip to content

Instantly share code, notes, and snippets.

@Licenser
Created May 4, 2010 18:04
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 Licenser/389741 to your computer and use it in GitHub Desktop.
Save Licenser/389741 to your computer and use it in GitHub Desktop.
(defn <3 [love & loves]
(loop [l (str "I love " love) loves loves]
(let [[love & loves] loves]
(if (nil? love)
(str l ".")
(if (empty? loves)
(str l " and " love ".")
(recur (str l ", " love) loves))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment