On Mon, 21 Aug 2000 [EMAIL PROTECTED] wrote:

> BTW
> 
> >same? first second :f in :f 'a
> >== true
> 
> does not work for objects:
> 
> >> o: make object! [a: none b: none]
> >> second first :o
> == a
> >> in :o 'a
> == a
> >> same? (second first :o) (in :o 'a)
> == false
> 
> so I wouldn't expect it to work for functions either.

second :f functions body. So I woulc expect, that same? would
return true. Equivalent to object would be:

    >> o: make object! [sth: [a] a: 9]
    >> same? first second second o bind 'a in o 'self
    == true

CU,
Frank

Reply via email to