marrowmilo wrote:
> Revised -Rebol Coded/ Diagram
>
> |
> | foreach
> | example
> | colors ->
> | | [if parse
> | | example
> | | [to "pink"
> | | to end]->
> | | -
> | | print
> | | example]]
> | | ->
That seems awfully time consuming. What's wrong with simply writing:
foreach Color Colors [
if parse Color [
to "pink" to end
][
print Color
]
]
?
Note that I've Title-Cased the important words; changed your 'example to
'Color to better reflect the Many contents of 'Colors and the single nature
of 'Color; and used consistent indenting.
I hope that helps!
Andrew Martin
ICQ: 26227169 http://valley.150m.com/
-><-