set serveroutput on
DECLARE
   a number(2);
BEGIN
   FOR a in 0 .. 10 LOOP
       dbms_output.put_line('value of a: ' || a);
  END LOOP;
END;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: