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

[REBOL] Re: Core 2.6 - Last minute requests - take your chance!

From: cyphre:seznam:cz at: 10-Apr-2002 10:28

Hello All, I'm not sure if there is some workaround for this but maybe it would be handy to have native 'share feature in the next version?
>> a: [1 2 3 4 5 6 7 8]
== [1 2 3 4 5 6 7 8]
>> b: share 'a 3 6
== [3 4 5 6]
>> head b
== [3 4 5 6]
>> last b
== 6
>> length? b
== 4
>> b/3: 10
== [3 4 10 6]
>> probe a
== [1 2 3 4 10 6 7 8] BTW Anyone know how to make 'share as a mezzanine function? ;-) regards, Cyphre