Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ZeleC said:LABEL:
for I in <lower_limit> to <upper_limit> loop
<statement>
end loop;
-- example:
--for I in 1 to 10 loop
-- I_SQR(I) := I * I;
--end loop;
for I in 1 to 10 loop
I_SQR(I) := I * I;
I_SQR(I) := I_SQR(I) * I;
end loop;