root/trunk/examples/modules/test.lgt

Revision 4601, 207 bytes (checked in by pmoura, 7 weeks ago)

Added svn:mime-type property to source files (set to text/x-logtalk).

  • Property svn:mime-type set to text/x-logtalk
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1
2:- module(test, [test/0, names/0]).
3
4:- use_module(list, [contained/2]).
5:- use_module(meta, [meta/1]).
6
7names :-
8    contained(P, [paulo, carlos, helena]),
9    write(P), nl,
10    fail.
11names.
12
13test :-
14    meta(names).
Note: See TracBrowser for help on using the browser.