Hello world/Standard error: Difference between revisions

Added BBC BASIC
(GP)
(Added BBC BASIC)
Line 66:
20 PAUSE 5: REM allow time for the user to see the error message
</lang>
 
=={{header|BBC BASIC}}==
The program must be compiled as a console application for this to work.
<lang bbcbasic> STD_ERROR_HANDLE = -12
SYS "GetStdHandle", STD_ERROR_HANDLE TO @hfile%(1)
PRINT #13, "Goodbye, World!"
QUIT</lang>
 
=={{header|C}}==