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

[REBOL] Re: Blocks of Strings

From: tomc:darkwing:uoregon at: 4-Nov-2002 23:13

one way
>> x: ["dsfrghtr" "gfdh" "sdfjhf" "jkhkah" "dsfkas" "hfkh" "dsfkjsa"
hdfklhSDF "KHJKSFH"] == ["dsfrghtr" "gfdh" "sdfjhf" "jkhkah" "dsfkas" "hfkh" "dsfkjsa" hdfklhSDF "KHJKSFH"]
>>Y: []
== []
>> foreach [a b c] x [append/only y reduce[a b c]]
== [["dsfrghtr" "gfdh" "sdfjhf"] ["jkhkah" "dsfkas" "hfkh"] ["dsfkjsa" hdfklhSDF "KHJKSFH"]] On Tue, 5 Nov 2002, Louis A. Turk wrote: