Charles: > Obviously, if the first condition is false, I want it to quit without > evaluating the second condition.
One way is to use the 'all function. Try these two snippets:
if all [
1 = 1
2 / 0 ] [
print "won't get here -- divide by zero error"]
if all [
1 = 99
2 / 0 ] [
print "won't get here -- first condition false"]
Sunanda.
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.
