Re: Help Improving Game Of Life in clojure

2009-04-19 Thread Michael Hunger
Thanks for the great feedback. Michael Am 19.04.2009 11:33 Uhr, schrieb Timothy Pratley: > Hi Michael, > > Larry recently posted something similar > http://groups.google.com/group/clojure/browse_thread/thread/773e628953b40d9f > Which generated also quite a lot of discussion which you might also

Re: Help Improving Game Of Life in clojure

2009-04-19 Thread Timothy Pratley
Hi Michael, Larry recently posted something similar http://groups.google.com/group/clojure/browse_thread/thread/773e628953b40d9f Which generated also quite a lot of discussion which you might also be interested in. > (def matrix #{[-1 -1] [-1 0] [-1 1] [0 -1] [0 0] [0 1] [1 -1] [1 0] [1 1]}) > (