Logtalk test file

This commit is contained in:
Paulo Moura
2012-03-02 21:06:02 +00:00
parent 66496fcde5
commit 46a6f319f0

9
test/fixtures/foo.lgt vendored Normal file
View File

@@ -0,0 +1,9 @@
% 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.