Hi, I'm unused to managing file dependencies myself, and I'm lost as to how to load two namespaces that reference each other.
I'm treating the (use) command as analagous to java's import command. But I've run into problems trying to load this namespace: Do I have to resort to manually separating the dependencies? And if so, how would I go about doing that? Thanks for your help -Patrick ------a.clj------- (ns a (:use b)) (defn afunc [] (bfunc)) ------b.clj------ (ns b (:use a)) (defn bfunc [] (afunc)) --~--~---------~--~----~------------~-------~--~----~ 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 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 -~----------~----~----~----~------~----~------~--~---