Hi Terry & Joel,

>     >> str: {word1 word2 "a string"}
>     == {word1 word2 "a string"}
>     >> blk: load join "[" [str "]"]
>     == [word1 word2 "a string"]
>     >> foreach item blk [print type? :item]
>     word
>     word
>     string
>     >>

Actually, all that is necessary is to do:

>> str: {word1 word2 "a string"}
== {word1 word2 "a string"}
>> blk: load str
== [word1 word2 "a string"]
>> type? blk
== block!

- Chris

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to