root/trunk/examples/errors/catdynpred.lgt

Revision 4601, 248 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:- category(catdynpred).
3
4    % dynamic predicates may be declared inside categories but ...
5    :- public(dynpred/1).
6    :- dynamic(dynpred/1).
7
8    % ... clauses for dynamic predicates are not allowed
9    dynpred(1).
10    dynpred(2).
11    dynpred(3).
12
13:- end_object.
Note: See TracBrowser for help on using the browser.