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
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
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