RosettaCodeData/Task/Hello-world-Standard-error/Mercury/hello-world-standard-error.mercury
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
220 B
Text

:- module hello_error.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.stderr_stream(Stderr, !IO),
io.write_string(Stderr, "Goodbye, World!\n", !IO).