[REBOL] Q on Array of Objects Re:(8)

1999-11-30 Thread giesse
[EMAIL PROTECTED] wrote: Implementation: make object! [ s: "This is s - a string" f: func [hello] [s] ] Interface: make object! [ ; f: get in Implementation 'f ; Copies Implementation/f Actually, you get a reference to that function. You will

[REBOL] Q on Array of Objects Re:(8)

1999-11-30 Thread ingo
Hi Andrew, Those were the words of [EMAIL PROTECTED]: Hi, Ingo. Caution - none of this works as expected. ... Ahhh, so it wasn't me :-) ; Something like this in REBOL would be nice: C!: make class! [ s: "a string" m: method [parameter] [s] ] Cc: make C! [