Re: [ANN] clj-iter, an iteration macro for Clojure inspired by Common Lisp's Iterate

2009-11-05 Thread John Harrop
On Thu, Nov 5, 2009 at 7:03 PM, Daniel Janus wrote: > To avoid citing the entire README blurb, I'll just give you some > examples: > >(iter (for x in [31 41 59 26]) > (for y from 1) > (collect (+ x y))) >==> (32 43 62 30) > >(iter (for s on [1 2 3 4 5]) >(for

Re: [ANN] clj-iter, an iteration macro for Clojure inspired by Common Lisp's Iterate

2009-11-05 Thread Stefan Arentz
On 2009-11-05, at 7:03 PM, Daniel Janus wrote: > > Dear all, > > I am happy to announce the public availability of clj-iter, an > Iterate- > like iteration macro. It is free (available under the terms of MIT > license) and can be found on GitHub: http://github.com/nathell/clj- > iter > > The