Re: Poll for a new name for clojure eclipse plugin 'clojure-dev'

2009-06-23 Thread Alvaro Vilanova Vidal
Corona rocks! It also means crown in spanish. Sent from my android :P El 24 de jun de 2009, 3:07 a.m., "Wilson MacGyver" escribió: hmm... developing clojure code using eclipse makes you poor. :) On Tue, Jun 23, 2009 at 9:05 PM, verec < jeanfrancois.brouil...@googlemail.com> wrote: > > > A bit

Re: Clojure Book example that has unexpected effect in trunk version of Clojure

2009-05-31 Thread Alvaro Vilanova Vidal
I have the same error, but only with emacs slime repl (any clojure version). 2009/5/31 Alen Ribic > > I thought I had the latest from trunk, but I was on rev 1371. Did an > update to latest now, rev 1382. Ran the example again and it was fine > now. > > -Al > > On Sun, May 31, 2009 at 11:48 AM,

Re: The thread ring problem

2009-05-29 Thread Alvaro Vilanova Vidal
erent approach to sending the token around the ring. > >> > >> *it may be a bit liberal in its interpretation of the rules... didn't > >> read them that carefully. > >> > >> On Fri, May 29, 2009 at 2:32 PM, Alvaro Vilanova Vidal < > alv...@gmai

The thread ring problem

2009-05-29 Thread Alvaro Vilanova Vidal
Hi everyone, I am a newbie in clojure world, so I have some newbie's questions :) To learn about clojure, I am trying to do the thread ring problem of clgb in clojure. The rules of problem are here, and my attempt

Re: Git with Google Code

2009-04-30 Thread Alvaro Vilanova Vidal
Soon, we will be able to use a DVCS on Google Code :) http://google-code-updates.blogspot.com/2009/04/mercurial-support-for-project-hosting.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post

Re: shortcut for for comprehension

2009-04-21 Thread Alvaro Vilanova Vidal
I am a newbie, but seems that "for comprehension" are lazy lists: user> (take 5 (for [x (range 20) :when (do (printf "*%d* " x) (= (rem x 2) 1))] x)) (*0* *1* *2* *3* 1 *4* *5* 3 *6* *7* 5 *8* *9* 7 9) So, I think that you should use take :) 2009/4/21 Michael Hunger > > Is it possible to use