Guest User

Untitled

a guest
Nov 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. go :- hypothesize(Coffee),
  2. write('Your order is : '),
  3. write(Coffee),
  4. write('and the price for your order = : ')
  5. nl,
  6. undo.
  7.  
  8. /* hypotheses to be tested */
  9. hypothesize(moca) :- moca, !.
  10. hypothesize(hotChocolate) :- hotChocolate, !.
  11. hypothesize(latte) :- latte, !.
  12. hypothesize(cappuccino) :- cappuccino, !.
  13.  
  14. /* rules */
  15. moca :-
  16. /* ask if you want hot or cold
  17. * ask the size of the coffee*/
Add Comment
Please, Sign In to add comment