If you mean parameters to the procedure then it is just like any other procedure. I.e.:
Code:
run whatever.p ( input param1, input param2, output param3 ) on somehandle.
Code:
/* whatever.p
*/
define input parameter p1 as character no-undo.
define input parameter p2 as character no-undo.
define output parameter p3 as character no-undo.
p3 = p1 + p2.
return.
If you are talking input & output as in keyboard and screen then you are completely misunderstanding how these things work. (You cannot do that.)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.