Fixes recursion bug in disambiguate_in().
[ohcount] / test / src_dir / logtalk.lgt
1 /* test file for Logtalk parsing */
2
3 % this is a Logtalk source file
4
5 :- object(hello_world).
6
7         % the initialization/1 directive argument is automatically executed
8         % when the object is loaded into memory:
9         :- initialization((nl, write('********** Hello World! **********'), nl)).
10
11 :- end_object.