2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -1 +1 @@
say 'Goodbye, World!'
call lineout 'STDERR', "Goodbye, World!"

View file

@ -1 +1,2 @@
call lineout 'STDERR', "Goodbye, World!"
msgText = 'Goodbye, World!'
call charout 'STDERR', msgText

View file

@ -1,2 +1,14 @@
msgText = 'Goodbye, World!'
call charout 'STDERR', msgText
/* 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'