Would like to line out the INs and OUTs too.
Output of beautified version:
PROCEDURE test
(
,p_price NUMBER
,p_id IN NUMBER
,p_flag OUT BOOLEAN
,p_last_name IN OUT VARCHAR2
) IS
BEGIN
NULL;
END test;
But I prefer the code fragment below:
PROCEDURE test
( p_price...