Hello world/Text: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 617: Line 617:
% when the object is loaded into memory:
% when the object is loaded into memory:
:- initialization((nl, write('Goodbye, world!'), nl)).
:- initialization((nl, write('Goodbye, world!'), nl)).

:- end_object.</lang>

=={{header|Lotusscript}}==
<lang lotusscript>:- object(hello_world).
'This will send the output to the status bar at the bottom of the Notes client screen
print "Goodbye, world"


:- end_object.</lang>
:- end_object.</lang>