Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread Edward Shen
Can Clojure simulate Class?Lisp can do it! Anyone know it? --~--~-~--~~~---~--~~ 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 To unsubscribe from

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread Konrad Hinsen
On 19.03.2009, at 07:54, Edward Shen wrote: Can Clojure simulate Class?Lisp can do it! Anyone know it? Clojure can do it as well. Look here for a library that does it: http://github.com/swannodette/spinoza/tree/master Konrad

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread e
On Thu, Mar 19, 2009 at 6:34 AM, Konrad Hinsen konrad.hin...@laposte.netwrote: On 19.03.2009, at 07:54, Edward Shen wrote: Can Clojure simulate Class?Lisp can do it! Anyone know it? Clojure can do it as well. Look here for a library that does it: http://github.com

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread David Nolen
, Edward Shen wrote: Can Clojure simulate Class?Lisp can do it! Anyone know it? Clojure can do it as well. Look here for a library that does it: http://github.com/swannodette/spinoza/tree/master Konrad. That library looks very useful, but if this is intended to be a repeat

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread mikel
On Mar 19, 7:17 am, David Nolen dnolen.li...@gmail.com wrote: Doesn't On Lisp talk about simulating CLOS with closures? It's free online. Building either class-based or prototype-based object systems on closures is pretty straightforward. A closure carries abritrary state around in the

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread Rich Hickey
On Mar 19, 2009, at 2:14 PM, mikel wrote: On Mar 19, 7:17 am, David Nolen dnolen.li...@gmail.com wrote: Doesn't On Lisp talk about simulating CLOS with closures? It's free online. Building either class-based or prototype-based object systems on closures is pretty straightforward. A

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread Mark Volkmann
On Thu, Mar 19, 2009 at 2:13 PM, Rich Hickey richhic...@gmail.com wrote: http://clojure.org/state This is a great essay that I hadn't read before! I think it was written before Atoms were added to Clojure or they would be mentioned along with Refs and Agents. -- R. Mark Volkmann Object

Re: Can Clojure simulate Class?Lisp can do it!

2009-03-19 Thread mikel
On Mar 19, 2:13 pm, Rich Hickey richhic...@gmail.com wrote: On Mar 19, 2009, at 2:14 PM, mikel wrote: On Mar 19, 7:17 am, David Nolen dnolen.li...@gmail.com wrote: Doesn't On Lisp talk about simulating CLOS with closures? It's free   online. Building either class-based or