Skip to content

Instantly share code, notes, and snippets.

@rares
Created November 15, 2011 20:30
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 rares/1368237 to your computer and use it in GitHub Desktop.
Save rares/1368237 to your computer and use it in GitHub Desktop.
(defn flip
[f]
(fn [& argv]
(apply f (reverse argv))))
(println ((flip /) 10 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment