On Feb 11, 4:22 pm, MiltondSilva <shadowtr...@gmail.com> wrote:
> I now have another problem. When I run this in the repl:
>
> (add-watch products :prodkey send-products)
> (add-watch material :matkey ask-material)
> (dump material products products-store)
>   (loop [cnt 10]
>     (map #(send % client-act) clients)
>     (map #(send % manufacture) artisans)
>     (if (zero? cnt) (str "done") (recur (dec cnt))))
>
> It just prints "done". Where is the output of dump?

map is lazy.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to