Skip to content

Instantly share code, notes, and snippets.

Created December 6, 2011 01:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1436347 to your computer and use it in GitHub Desktop.
Save anonymous/1436347 to your computer and use it in GitHub Desktop.
;; ariarule's solution to Juxtaposition
;; https://4clojure.com/problem/59
(fn new-juxt [& fs]
(fn [& args]
(map #(apply % args) fs)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment