Hi Kai,

KP> What is a good way to transform blocks like

KP> [ [ "Bill"  50 ] [ "Jane"  45 ]]
KP> to
KP>  [  "Bill"  50   "Jane"  45 ]


    flatten: func [blk [block!] /local res rule value] [
        res: copy[]
        rule: [some [into rule | set value skip (append res value)]]
        parse blk rule
        res
    ]


-- Gregg

-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to