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

[REBOL] Composing lists in lists

From: massung::gmail::com at: 8-Mar-2006 19:25

Another question, folks (I'll be full of them for a bit). And, I appreciate the quick answers I've been getting from everyone :-) How do I compose a list in a list? For example:
>> list: [a b c]
== [a b c]
>> compose [ 1 (list) ]
== [1 a b c] So, I would actually like it to be: [1 [a b c]]. Now, I can force this by doing something like:
>> list: [ [a b c] ] >> compose [ 1 (list) ]
== [1 [a b c]] But this not only sure feels like voodoo-hackery, but just wrong. I'm sorry if this is a trivial question and the answer is in the REBOL dictionary, but looking through all the series functions, compose was the closest I got to what I was looking for. Jeff M. -- massung-gmail.com