Codebase list ohcount / 6ef9399e-69b6-464b-98a8-52915e284046/main test / src_dir / logtalk.lgt
6ef9399e-69b6-464b-98a8-52915e284046/main

Tree @6ef9399e-69b6-464b-98a8-52915e284046/main (Download .tar.gz)

logtalk.lgt @6ef9399e-69b6-464b-98a8-52915e284046/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.