Create a gist now

Instantly share code, notes, and snippets.

;; 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