This image shows the Stored Procedures dialog box again. It is the same as the previous image except that the Source tab is shown. It contains a field with the following code snippet:

procedure proc(x number, y out number) as
begin
     y := x;
end;