
:- object(hello_world).

	% the initialization/1 directive argument is automatically executed
	% when the object is compiled and loaded into memory:
	:- initialization((nl, write('********** Hello World! **********'), nl)).

:- end_object.
