Move test fixtures to samples/

This commit is contained in:
Joshua Peek
2012-06-22 10:09:24 -05:00
parent b571c47a1c
commit 5521dd08a0
247 changed files with 13 additions and 14 deletions

9
samples/logtalk/foo.lgt 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.