Ameausoone / demo-github-action

12 stars 1 forks source link

How eat burger? #75

Open jblary opened 2 years ago

github-actions[bot] commented 2 years ago

separate(TaggedList,Food,Drink) :- include(isFood,TaggedList,Food), % isFood/1 will be called for each element include(isDrink,TaggedList,Drink). % same as above

isFood(eat()). % no need to be complex; just succeed if argument matches isDrink(drink()). % same as above