set serveroutput on;
declare
a int;
c int;
b int;
procedure pie(x in out number)
is
begin
x:=x+10;
end;
begin
a:=5;
pie(a);
dbms_output.put_line('hello '||a);
end;
declare
a int;
c int;
b int;
procedure pie(x in out number)
is
begin
x:=x+10;
end;
begin
a:=5;
pie(a);
dbms_output.put_line('hello '||a);
end;
No comments:
Post a Comment