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.
set serveroutput on format wrap
declare
x number := 0;
procedure p (x varchar2) is dbms_output.put_line(x); end;
begin
p('1');
x := x + 1:
p('2: x = '||x);
<some other code>
p('3');
<more code>
p('4');
end;
/