Re: learning about AOT

2008-12-15 Thread Albert Cardona
> Wow, that's a lot of things that have to be in the classpath! > > In your example the namespace is fj.tests.process. > You say the classpath must contain: > 1) the "fj" directory > 2) the "process" directory > 3) the "classes" directory where the .class files will be written > > I would have gu

Re: learning about AOT

2008-12-14 Thread Mark Volkmann
On Sun, Dec 14, 2008 at 3:45 PM, Albert Cardona wrote: > > Mark Volkmann wrote: >> I'm trying AOT compilation for the first time. Here's what I did. >> >> - created the directory com/ociweb below my current directory >> - created the source file math.clj with the following content >> >> (ns com.o

Re: learning about AOT

2008-12-14 Thread Albert Cardona
Mark Volkmann wrote: > I'm trying AOT compilation for the first time. Here's what I did. > > - created the directory com/ociweb below my current directory > - created the source file math.clj with the following content > > (ns com.ociweb.math) > (defn fib [n] (reduce * (range 2 (inc n > > - st

learning about AOT

2008-12-14 Thread Mark Volkmann
I'm trying AOT compilation for the first time. Here's what I did. - created the directory com/ociweb below my current directory - created the source file math.clj with the following content (ns com.ociweb.math) (defn fib [n] (reduce * (range 2 (inc n - started a REPL in the current director