On Aug 14, 2:39 am, Eric Lavigne <lavigne.e...@gmail.com> wrote: > I discussed two problems. The first problem, which you addressed, was > mostly just a warm-up for discussing a related problem that is more > severe. Where can I put (def g) so that two files can "require" each > other?
I would say this is not a clojure specific problem but a general programming problem. John Lakos wrote extensively on this issue in "Large Scale C++". I would say that if you have two files that require eachother then those things are obviously not independent and should be in the same file. If you cannot use them independently then why separate them. Either roll the files into a single file, or extract the tangled part into a third file which can require the other two. Adam -- 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