STDOUT
Tom,
You can open a STDOUT stream in ARexx with the open() function, as for
example
call open STDOUT,'con:0/0/640/100/RexxOut'
Usually you don't need to do this, as the output is inherited if the
program is launched by a shell. But if it starts from an environment
without streams, this will open one for you.
-Bill Hawes