Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: reduce/deep

From: rebol:techscribe at: 21-Oct-2003 21:44

Hi Robert.
>> b: a: [a 1 b 2]
== [a 1 b 2]
>> same? a b
== true
>> a: b: "xyz"
== "xyz"
>> d: c: reduce [a b]
== ["xyz" "xyz"]
>> same? d c
== true Robert M. Münch wrote: