This is the only workaround I can thing of too. I used something similar in my pre-FOR...NEXT days:

code:

$i=0
do
"i = $i" ?
if $i=5 $i=9 endif
$i=$i+1
until $i=10


I think that EXIT and QUIT should be refined so that EXIT will exit from any FOR...NEXT, IF...ENDIF, DO...UNTIL and WHILE...LOOP loop. And QUIT should immediately quit the current script. I have found that sometimes I have to do QUIT QUIT to get out then and there.

cj