Jan Wieck wrote:
But what if they decide to allow

LOOP
    -- ...
    IF condition THEN
        EXIT;
END LOOP;

at some point? There you'd get ambiguity.

ISTM this would be ambiguous in any case:

IF condition1 THEN
    foo;
    IF condition2 THEN
        bar;
END IF;

-Neil

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
   (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

Reply via email to