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

[REBOL] How to create block of block?

From: raimunddold::web::de at: 1-May-2004 14:38

Hi, I do have a block and will add this to another block as whole to create a block of blocks. How can I do this? Example:
>> block1: [1 2 3]
== [1 2 3]
>> block2: [4 5 6]
== [4 5 6]
>> block3: append block1 block2
== [1 2 3 4 5 6] But I want the follwing block3: [1 2 3 [4 5 6]] How do I get the block3 I want? Raimund