Hi Charles,
On Friday, August 02, 2002, 4:24:21 AM, you wrote:
C> either condition? [
C> if true do this
C> ][
C> if false
C> do these
C> next 20 lines
C> all indented
C> with more indentation
C> yet to come
C> very long lines
C> ]
Is really indentation such a big problem?
Anyway, I think you could do something like:
processing-func: func [etc.] [
if condition? [exit]
do-all-your-work
]
for etc. [
processing-func args
]
or maybe use something like:
for etc. [catch[
if condition? [throw 'get-me-out-of-here]
do-all-your-work
]]
Regards,
Gabriele.
--
Gabriele Santilli <[EMAIL PROTECTED]> -- REBOL Programmer
Amigan -- AGI L'Aquila -- REB: http://web.tiscali.it/rebol/index.r
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.