[REBOL] Re: Composing lists in lists
From: pwawood::gmail::com at: 9-Mar-2006 14:03
Jeff Volker's advice applied to your simple example:>> list: [a b c]== [a b c]>> append/only newlist: [1] list== [1 [a b c]]>> newlist== [1 [a b c]] Regards Peter On Thursday, Mar 9, 2006, at 11:59 Asia/Kuala_Lumpur, Volker Nitsch wrote: