On 11 February 2010 17:57, John Pall <[email protected]> wrote: > can we creat threads in clojure?
Yes. Clojure 1.2.0-master-SNAPSHOT user=> (Thread.) #<Thread Thread[Thread-0,5,main]> But often you would use an agent or pmap etc. instead of creating explicit threads. -- Michael Wood <[email protected]> -- 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
