RosettaCodeData/Task/Hello-world-Standard-error/Logtalk/hello-world-standard-error.logtalk
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

7 lines
236 B
Text

:- object(error_message).
% the initialization/1 directive argument is automatically executed
% when the object is compiled and loaded into memory:
:- initialization(write(user_error, 'Goodbye, World!\n')).
:- end_object.