clojure.org needs to be updated with a release announcement for 1.4.
On Wednesday, April 18, 2012 4:05:15 AM UTC+2, Alan Dipert wrote:
>
> We are pleased to announce the release of Clojure 1.4:
>
> http://clojure.org/downloads
>
> For maven/leiningen users, your settings are now:
>
> :dependen
Brilliant, thanks Meikel! Quite a complex macro, that.
--
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 from new members are moderated - please be patient with your
first po
Hi Clojurians!
Please could somebody explain the code highlighted expression below to me?
(Adapted from *The Joy of Clojure*, listing 8.9)
(defmacro with-resource [bindings close-fn & body]
> `(let ~bindings
> (try
>~@body
>(finally
> (~close-fn ~(bindings 0))
Thanks, If I'd read that page carefully & done a search in JIRA I
would've seen that CLJS-24 already addresses this. Doh!
On Sep 1, 4:26 pm, Luc Prefontaine
wrote:
> Look at this:
>
> http://clojure.org/contributing
>
> Luc P.
>
> On Thu, 1 Sep 2011 04:53:20
Hi Clojurians!
I created my first JIRA issue today (CLJ-834), but I didn't assign it
to anyone, because I didn't know who to assign it to! Also, I'm not
sure what the procedure is for submitting code - do you generally post
to this group & JIRA or just create an issue? Any guidelines would be
welc
I can compile the following simple program, but when I try to run it
I get an error:
Unhandled Exception: System.NotImplementedException: details
at ClrExperiments.Employee.details()
at ClojureClrExperiment.Program.Main()
Here is the Clojure code:
(ns clr-experiments.core