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

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

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

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

2011-04-07 Thread j1n3l0
be registered under        artifact-id   the artifact name for the file        version       the version of the file        packaging     the packaging of the file e.g. jar  - Mark On Thu, Apr 7, 2011 at 9:49 AM, j1n3l0 nelo.ony...@gmail.com wrote: Hi, I've written a little

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

Re: possible errors in ns documentation

2010-02-25 Thread j1n3l0
francoisdev...@gmail.com wrote: What Clojure version are you using? On Feb 24, 4:17 pm, j1n3l0 nelo.ony...@googlemail.com 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