RosettaCodeData/Task/Hello-world-Standard-error/Mercury/hello-world-standard-error.mercury
2023-07-01 13:44:08 -04: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).