Re: Dependency between files problem

2010-11-18 Thread tryingclj
To both of you: this is just to say thank you for taking the time to explain and advise in such detail. Really appreciated! -- 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 f

Re: Dependency between files problem

2010-11-15 Thread Ken Wesson
On Mon, Nov 15, 2010 at 2:35 PM, trying clj wrote: > File example\some.clj > > (ns example.some (:use example.someother)) > > (defn helloworld [] (print "helloworld")) > > > File example\someother.clj: > > (ns example.someother (:use example.some)) > > (defn sample [] (helloworld)) > > > A compile

Re: Dependency between files problem

2010-11-15 Thread Phil Hagelberg
On Mon, Nov 15, 2010 at 11:35 AM, trying clj wrote: > A compile error "Unable to resolve helloworld in this context" is produced > (on either latest clojure-maven-plugin or Leiningen). If the two defn's are > switched places, the build completes successfully. > > This is very basic functionality b