PPWIZARD is a free preprocessor for HTML, REXX, Visual Basic or any text files.
![]() | ![]() | ![]() | ![]() | ![]() |
Say() |
This is an inbuilt function function provided by PPWIZARD.
This function should be used to write lines to standard out as well as any console or error files being used.
I recommend that you don't use the rexx 'say' command to write output directly to standard output as this won't appear in any console file.
This call takes a single parameter and that is the line(s) to output.
Example |
#DefineRexx '' ;--- Put return code into the rexx variable "FuncRc" --- FunctRc = RexxFunction(parm1, parm2) ;;Pass 2 parameters ;--- Display value ------------------------------------- call Say 'RC = ' || RexxFunction(parm1) ;;Pass 1 parameter #DefineRexx