Java, Lein, and Windows x64

2012-12-08 Thread Kruno Saho
There seems to be an issue, which I have spent several days combating. The issue is simple, you can not download any dependencies, and therefore you can not run Lein at all. The solution is very simple, and it is a well knows solution. In lein.bat, at the very end of the file there needs to be

Re: Java, Lein, and Windows x64

2012-12-08 Thread Kruno Saho
Indeed. It is for Leiningen 2. On Sunday, December 9, 2012 1:05:46 PM UTC+11, Sean Corfield wrote: > > Is this for Leiningen 2? I've been running it on Windows 8 64-bit without > needing to update lein.bat. Which version of Windows are you on? > > > On Sat, Dec 8, 2012

Map vs Doseq on agents

2012-12-27 Thread Kruno Saho
This code works: (doseq [q @draw-queue] > (draw-entity screen q))) This code does not: (map (fn [e] (draw-entity screen e)) @draw-queue) > The difference here is that `map` produces no side effects, while `doseq` expects side effects. In Common Lisp, `map` can take side effect creati