Setup:
weather(phoenix, summer, hot).
weather(la, summer, warm).
weather(phoenix, winter, warm).
Some variables
weather(City,summer,hot).
weather(City,_,warm).
All the cities that are hot in the summer and warm in winder
weather(City, summer, hot), weather(City, winter, warm)
Relationship(object, ... objects) :- Relationship(objects ...)
| | |
This is the HEAD IF BODY
course(cse110, mon, wed, 11, 12, 11, 12, holton, bryce, coor105, coor321).
course (
cse110,
day(mon, wed),
time(11, 12),
prof(holton, bryce),
coor105
).
cource (
cse110,
day(mon, wed),
time(11, 12),
prof(holton, bryce),
coor321
).