[fonc] Piumarta and Warth’s Open Objects in Scheme

2014-10-29 Thread Kurt Stephens
Something I threw together. :) http://devdriven.com/2014/10/piumarta-and-warths-open-objects-in-scheme/ -- KAS ___ fonc mailing list fonc@vpri.org http://vpri.org/mailman/listinfo/fonc

Re: [fonc] Piumarta and Warth’s Open Objects in Scheme

2014-10-29 Thread Julian Leviston
Link broken. Julian http://www.getcontented.com.au/ - You Need GetContented - Make Websites, Not War! On 29 Oct 2014, at 5:55 pm, Kurt Stephens k...@kurtstephens.com wrote: Something I threw together. :) http://devdriven.com/2014/10/piumarta-and-warths-open-objects-in-scheme/ -- KAS

Re: [fonc] Piumarta and Warth’s Open Objects in Scheme

2014-10-29 Thread Balsalobre, Francois
;;; Piumarta and Warth's Open Objects in Scheme. ;;; A Scheme implementation of the object model as described in their paper: ;;; http://piumarta.com/software/cola/objmodel2.pdf (define object-tag '(OBJECT)) (define vtable #f) (define object #f) (define (object-vt self) (vector-ref self

Re: [fonc] Piumarta and Warth’s Open Objects in Scheme

2014-10-29 Thread Kurt Stephens
Fixed and revised. Apologies. -- KAS On 2014-10-29 03:11, Julian Leviston wrote: Link broken. Julian On 29 Oct 2014, at 5:55 pm, Kurt Stephens k...@kurtstephens.com wrote: Something I threw together. :) http://devdriven.com/2014/10/piumarta-and-warths-open-objects-in-scheme/ [1]