Kai: > What is a good way to transform blocks like > > [ [ "Bill" 50 ] [ "Jane" 45 ]]
May have fewer side effects than some of the solutions to date:
new-block: copy []
foreach b [ [ "Bill" 50 ] [ "Jane" 45 ]] [
append new-block b
]
>> new-block
== ["Bill" 50 "Jane" 45]
Though if you want to deblock more nested structures, some more
work is needed.
Sunanda
--
To unsubscribe from the list, just send an email to
lists at rebol.com with unsubscribe as the subject.
