KiwiREXXDude
Programmer
I am trying to get a protected internal function to read a passed stem on the OS/390 mainframe without much luck. I know you can do it because I have done it at another site.
This is what I think should happen;
The REXX version is 3.48.
This is what I think should happen;
Code:
rv = MyFunc(STEM1.)
return
MyFunc: procedure
arg InStem.
do i = 1 to InStem.0
say 'Line 'i' = 'InStem.i
end
return 1
The REXX version is 3.48.