User Tools

Site Tools


kurs:labels

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

kurs:labels [2014/09/10 21:22]
kurs:labels [2014/09/10 21:22] (current)
Line 1: Line 1:
 +<​code>​ 
 +begin 
 +  <<​outer>>​ 
 +  for o in 1..10 loop 
 +    <<​inner>>​ 
 +    for i in 1..10 loop 
 +      dbms_output.put_line(o*i);​ 
 +      exit outer when i*o > 54; 
 +    end loop; 
 +   ​dbms_output.put_line(o);​ 
 +  end loop; 
 +end; 
 +</​code>​
kurs/labels.txt · Last modified: 2014/09/10 21:22 (external edit)