Awesome. I see you're using the dependency plugin to only copy your
specific AOT classes, I should really update the clojure-maven-plugin to
only copy the discovered namespaces along.
I remember Chas raised a bug years ago to fix this in the actual clojure
compiler but I don't think it ever g
Hi Patrick, great news to see more work in the Clojure + OSGi territory !
And very cool initiative to having created a maven clojure osgi plugin !
2012/3/16 Patrick Moriarty
> Oops, forgot the reply-to!
>
> On 16 Mar 2012, at 21:48, Patrick Moriarty wrote:
>
> Hi,
>
> I've spent quite a lot of
Oops, forgot the reply-to!
On 16 Mar 2012, at 21:48, Patrick Moriarty wrote:
> Hi,
>
> I've spent quite a lot of time with Clojure and OSGi lately and have had some
> success in using Bnd and tools.namespace to generate a manifest for my mixed
> Clojure/Java project. I'm using clojure.osgi suc
Hi,
I've spent quite a lot of time with Clojure and OSGi lately and have had some
success in using Bnd and tools.namespace to generate a manifest for my mixed
Clojure/Java project. I'm using clojure.osgi successfully to handle using
requiring and loading clojure namespaces and to register and t
http://www.google-melange.com/gsoc/accepted_orgs/google/gsoc2012
Congratulations to the entire Clojure community, we have a lot to look
forward to this summer.
David
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email t
hi,
http://www.shenlanguage.org/Download/download.html
Shen compiles to Clojure as well, now.
--
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 moderate
Wow thats surprisingly similar, I didn't realize this existed. Thanks.
On Mar 15, 10:11 pm, dennis zhuang wrote:
> There is a clojure-control:https://github.com/killme2008/clojure-control
>
> 2012/3/16 Chris McBride
>
>
>
>
>
>
>
>
>
> > Hi,
>
> > I releases two simple clojure libraries to hel
Thanks !!!
It's wonderful how much time can be wasted because a bad copy&paste :-)
Juan Manuel
On Friday, March 16, 2012 9:39:09 AM UTC+1, Meikel Brandmeyer (kotarak)
wrote:
>
> Hi,
>
> there is no 6th element in your example. That's why you get nil.
>
> Clojure 1.3.0
> user=> ((fn [[f & r] n]
Hi,
there is no 6th element in your example. That's why you get nil.
Clojure 1.3.0
user=> ((fn [[f & r] n] (if (zero? n) f (recur r (dec n [4 5 6 7 8 9] 2)
6
Sincerely
Meikel
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group
Problem 21 is: Write a function which returns the Nth element from a
sequence.
My solution is:
(fn [[f & r] n]
(if (zero? n)
f
(recur r (dec n)
but it is marked as incorrect. Opening a REPL, and defining it with defn:
(defn mynth
[[f & r] n]
(if (zer
10 matches
Mail list logo