home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / TESTS / LF / T3202.LF < prev    next >
Text File  |  1996-06-04  |  174b  |  10 lines

  1. %
  2. %        Wild Life Tests Programs 
  3. %        3200 : user defined predicates
  4. %
  5. %        3202 : number and order of solutions on backtracking.
  6. %
  7. plus(0,X,X).
  8. plus(s(X),Y,s(Z)) :- plus(X,Y,Z).
  9.  
  10.