Subject Procedure inside another procdure
Author Sergio Garcia
Hi All.

Can I create a procedure inside another procedure? Something like this:

SET TERM ^;

RECREATE PROCEDURE proc
AS
    DECLARE VARIABLE tmp INTEGER;

    PROCEDURE insideproc
    AS
    BEGIN
          <.....>
    END;

BEGIN
    <.....>
END;

SET TERM ;^

Best regards,
      Sergio