Re: ClojureC - A Clojure to C compiler - Work in Progress

2012-07-09 Thread j1n3l0
Hi, There is also a package for Ubuntu if you wish to install it that way: sudo apt-get install libgc-dev Will be keeping an eye on this one :) Nelo Onyiah -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: -> and ->>

2012-02-10 Thread j1n3l0
You can always check out clojuredocs.org: http://clojuredocs.org/clojure_core/clojure.core/-> http://clojuredocs.org/clojure_core/clojure.core/->> -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegrou

Re: ns/use/require/import inconsistent an confusing

2011-11-30 Thread j1n3l0
Also in a REPL you can do the following: user> (use 'example.core) nil user> But in a source file you have to do: (ns stuff.core (:use 'example.core)) I think I've seen the reason for this difference once before but can someone more learned *please* explain :) Thanks Nelo Ps: this exact

Re: clojure.core.logic.core/match usage

2011-10-04 Thread j1n3l0
I thought that since x matches both the first and third patterns, the third pattern would match better as the value for :a is 1 whereas the value in the first pattern is _? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

Re: How to add a java library (that is not in maven) as a dependency for a clojure library?

2011-04-07 Thread j1n3l0
iki/tutorial > >  - Mark > > > > > > > > On Thu, Apr 7, 2011 at 10:27 AM, j1n3l0 wrote: > > Thank you both for your input. > > > Now assuming I am prepared to publish the java component to clojars > > myself (which I am), how do I go about publ

Re: How to add a java library (that is not in maven) as a dependency for a clojure library?

2011-04-07 Thread j1n3l0
factId= > >>   -Dversion= > >>   -Dpackaging= > >>   -DgeneratePom=true > > >> Where:  the path to the file to load > >>              the group that the file should be registered under > >>           the artifact name for the file > >>

How to add a java library (that is not in maven) as a dependency for a clojure library?

2011-04-07 Thread j1n3l0
Hi, I've written a little clojure library that depends on a java library for functionality. This java library is only available on sourceforge.net. I have been using leiningen to manage my clojure projects and I would like to add it as a dependency in my project.clj file so I can publish my librar

Re: possible errors in ns documentation

2010-02-25 Thread j1n3l0
wrote: > What Clojure version are you using? > > On Feb 24, 4:17 pm, j1n3l0 wrote: > > > Hi all, > > > I'm not sure if this is the right place to raise this. I am new to > > clojure and was going through the docs for namespaces here: > > >http://rich

possible errors in ns documentation

2010-02-25 Thread j1n3l0
Hi all, I'm not sure if this is the right place to raise this. I am new to clojure and was going through the docs for namespaces here: http://richhickey.github.com/clojure/clojure.core-api.html#clojure.core/ns In the example there it implies that the way to import functions into your namespace i