Hi,

Am Mittwoch, 20. Juli 2011 06:38:27 UTC+2 schrieb Chas Emerick:
>
> Try:
>
> (ns myfuns
>    (:require
>        (foo.baz [a :as a]
>                 [b :as b]
>                 [c :as c]))
>
I think he wants more something like this:

(ns require.farm)

(def xxx '[[foo.bar [a :as a] [b :as b]] frob.nicate])
(def yyy '[[foo.bar.c :as c]])

(ns require.userA
  (:require [require.farm :as requires]))

(apply require requires/xxx)

(ns require.userB
  (:require [require.farm :as requires]))

(apply require requires/xxx)
(apply require requires/yyy)

Sincerely
Meikel

 

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to