Advertisement
starbeamrainbowlabs

Lab3.Weather.pl

Oct 20th, 2015
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 0.21 KB | None | 0 0
  1. weather(bad) :-
  2.     temperature(low),
  3.     cloud(high),
  4.     visibility(low).
  5.  
  6. weather(good) :-
  7.     temperature(high),
  8.     cloud(low),
  9.     visibility(high).
  10.  
  11. weather(unsure).
  12.  
  13. temperature(low).
  14. cloud(high).
  15. visibility(low).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement