Created
December 22, 2014 23:42
-
-
Save JubbaSmail/5251e00bb8ac55a80daa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare | |
x number; | |
begin | |
for i in 0..10 loop | |
dbms_output.put_line('+'||i); | |
end loop; | |
-------------------------- | |
x:=10; | |
loop | |
if x < 0 then | |
exit; | |
end if; | |
dbms_output.put_line('-'||x); | |
x:=x-1; | |
end loop; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment