Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
call lineout 'STDERR', "Goodbye, World!"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
msgText = 'Goodbye, World!'
|
||||
call charout 'STDERR', msgText
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
/* REXX ---------------------------------------------------------------
|
||||
* 07.07.2014 Walter Pachl
|
||||
* enter the appropriate command shown in a command prompt.
|
||||
* "rexx serr.rex 2>err.txt"
|
||||
* or "regina serr.rex 2>err.txt"
|
||||
* 2>file will redirect the stderr stream to the specified file.
|
||||
* I don't know any other way to catch this stream
|
||||
*--------------------------------------------------------------------*/
|
||||
Parse Version v
|
||||
Say v
|
||||
Call lineout 'stderr','Good bye, world!'
|
||||
Call lineout ,'Hello, world!'
|
||||
Say 'and this is the error output:'
|
||||
'type err.txt'
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
/**/
|
||||
Address command tco
|
||||
Call writeln stderr,'Good bye, world!'
|
||||
Call writeln stdout,'Hello, world!'
|
||||
Loading…
Add table
Add a link
Reference in a new issue