Got an out of memory when experimenting with core.async channels in go 
blocks. The following is a simple example.
 
(defn go-loop
[]
(let [c0 (chan)]
 (while true
  (go
    (>! c0 1))
  (go
    (println (<! c0))))))
 
;(.start (Thread. go-loop))
 
Clojure 1.5.1, Java 1.7.0_25 32-bit running under Win7 x64.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to