[REBOL] Re: Rebol Crash Was Mutability and sameness - a puzzle
From: zyao::sitaranetworks::com at: 17-Jul-2001 13:13
On Tue, Jul 17, 2001 at 02:02:49PM +0200, Romano Paolo Tenca wrote:
> 1) What is the answer to the puzzle?
>
> 2) About sameness I have found this thing on Rebol / Windows 98:
>
> a: [1] ; == [1]
> insert a reduce [a] ;== [1]
> b: [1] ;== [1]
> insert b reduce [b] ;== [1]
> same? a a/1 ;== true
> same? b b/1 ;== true
>
> All OK, now:
>
> same? a b ; **** Rebol makes a Guru Meditation (the name for old Amiga crash)
>
how about
insert a reduce [copy a]
may not be what your looking for, cause a definitely different from a/1
and all [ a = b not same? a b ]
did that on freebsd
-z