O
oedev
Guest
And, actually if I add a output parameter to my procedure example, the point of failure remains the same. DEFINE VARIABLE l AS LOGICAL NO-UNDO. OUTPUT TO VALUE("c:\temp\recursive-test-proc-output.txt") NO-ECHO. PROCEDURE test: DEFINE INPUT PARAMETER Y AS INT. DEFINE OUTPUT PARAMETER l AS LOGICAL. PUT UNFORMATTED Y space(5) ETIME SKIP. Y = Y + 1. RUN test(Y, OUTPUT l). END PROCEDURE. RUN test(0, OUTPUT l).
Continue reading...
Continue reading...