Skip to content

Instantly share code, notes, and snippets.

@bentford
Created February 13, 2013 20:05
Show Gist options
  • Save bentford/4947715 to your computer and use it in GitHub Desktop.
Save bentford/4947715 to your computer and use it in GitHub Desktop.
likes(bear, honey).
likes(human, honey).
likes(racoon, chicken).
likes(pig, slop).
likes(vulture,roadkill).
flavor(sweet, honey).
flavor(savory, chicken).
flavor(gross, slop).
flavor(gross,roadkill).
similar_taste(X,Y) :- \+(X = Y),
likes(X,Z), likes(Y,Z).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment