root/trunk/examples/birds/descriptors.lgt

Revision 4601, 0.9 KB (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:- category(descriptors).
3
4
5    :- info([
6        author is 'Paulo Moura',
7        version is 1.0,
8        date is 2000/2/18,
9        comment is 'Bird descriptors predicates.',
10        source is 'Example adapted from an Amzi! Inc Prolog book.']).
11
12
13    :- public([
14        bill/1,
15        cheek/1,
16        color/1,
17        eats/1,
18        family/1,
19        feed/1,
20        feet/1,
21        flight/1,
22        flight_profile/1,
23        head/1,
24        live/1,
25        neck/1,
26        nostrils/1,
27        order/1,
28        size/1,
29        tail/1,
30        throat/1,
31        voice/1,
32        wings/1]).
33
34    :- public(descriptor/1).
35
36
37    descriptor(bill/1).
38    descriptor(cheek/1).
39    descriptor(color/1).
40    descriptor(eats/1).
41    descriptor(feed/1).
42    descriptor(feet/1).
43    descriptor(flight/1).
44    descriptor(flight_profile/1).
45    descriptor(head/1).
46    descriptor(live/1).
47    descriptor(neck/1).
48    descriptor(nostrils/1).
49    descriptor(size/1).
50    descriptor(tail/1).
51    descriptor(throat/1).
52    descriptor(voice/1).
53    descriptor(wings/1).
54
55
56:- end_category.
Note: See TracBrowser for help on using the browser.