Hello world/Standard error: Difference between revisions

Content added Content deleted
(Added Chipmunk Basic)
(RPL: add section)
Line 963: Line 963:
=={{header|Ring}}==
=={{header|Ring}}==
<syntaxhighlight lang="ring">fputs(stderr,"Goodbye, World!")</syntaxhighlight>
<syntaxhighlight lang="ring">fputs(stderr,"Goodbye, World!")</syntaxhighlight>

=={{header|RPL}}==
There is no error console in RPL but all error messages are displayed at the top two lines of the display, which freezes until a key is pressed.
This can be mimicked with the <code>DISP</code> instruction:
≪ "Hello world!" 1 DISP ≫


=={{header|Ruby}}==
=={{header|Ruby}}==