9 loop
10 v_ind:=0; -- reset each time
11 <
12 loop
13 v_ind:=v_ind+1;
14 DBMS_OUTPUT.put_line(v_current);
15 v_printed:=v_printed+1;
16 exit Main when v_printed = v_max_printed;
17 exit when v_ind=4;
18 end loop Inner;
19 v_current:=v_current+5;
20 exit when v_current=25;
21 end loop Main;
22 end;
23 /
0
5
10
PL/SQL procedure successfully completed.
SQL>