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