Guest User

Untitled

a guest
Dec 18th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. book(hell, robert, drama, 500).
  2. book(haha, graham, comedy, 200).
  3. book(murder, fernando, crime, 1000).
  4. book(prog, david, study, 600).
  5. book(made_up, larry, fiction, 300).
  6. book(ref, bob, reference, 700).
  7.  
  8. holidays(A, B, C, D) :-book(A, B, C, D), (A = _),(B = _), (D < 400), (C\= study; C\= reference).
  9. revision(C, D) :- (D > 300), (C = study; C = reference).
  10. literary(C) :- (C = drama).
  11. leisure(C) :- (C = comedy; C = fiction).
Add Comment
Please, Sign In to add comment