[REBOL] Re: [inconsistency in object?]
From: rotenca:telvia:it at: 8-Mar-2002 23:15
Hi, Holger
> > How come that rebol/words have no 'self ?
>
> Implementation detail :).
But when system/words is cloned with make system/words, make changes the first
value of the first word (end!) to make it point to the object itself, also if
it is not called 'self. Make likes orthogonality? ;-)
>> x: make system/words [] 1
== 1
>> first first x
== end!
>> type? first second system/words
== unset!
>> type? first second x
== object!
---
Ciao
Romano