Codebase list ohcount / fc0f4e2e-584f-4c68-9809-ad96640f54f0/main test / src_dir / logtalk.lgt
fc0f4e2e-584f-4c68-9809-ad96640f54f0/main

Tree @fc0f4e2e-584f-4c68-9809-ad96640f54f0/main (Download .tar.gz)

logtalk.lgt @fc0f4e2e-584f-4c68-9809-ad96640f54f0/mainraw · history · blame

/* test file for Logtalk parsing */

% this is a Logtalk source file

:- object(hello_world).

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

:- end_object.