Hello world/Standard error: Difference between revisions

Content added Content deleted
m (→‎version 3: used a consistent name for the output stream for those operating systems that make a distinction between upper and lower case letters.)
(→‎version 3: used a different style to show another idiomatic way to show a message.)
Line 583: Line 583:


===version 3===
===version 3===
Same as above, but uses   '''charout'''   instead of   '''lineout'''.
Same as above, but uses a different style and also invokes   '''charout'''   instead of   '''lineout'''.
<lang rexx>call charout 'STDERR', "Goodbye, World!"</lang>
<lang rexx>msgText = 'Goodbye, World!'
call charout 'STDERR', msgText</lang>


===version 4===
===version 4===