create or replace procedure zzz( aaa out number)asbegin begin aaa:=10; end;end zzz;
declare aa number:=0;begin zzz(aa); dbms_output.put_line(aa);end;