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
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
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
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
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
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
> >>
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
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
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