dinosaur.lp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% clingo dinosaur.lp | |
% These are blanket facts, statements that each of these is living | |
% I think these are called atoms | |
living(vanessa). | |
living(fernando). | |
living(maria). | |
% This tells use size of arms for each living thing | |
armsize(vanessa, "small"). | |
armsize(fernando, "large"). | |
armsize(maria, "small"). | |
% A boolean to say we can roar! | |
canroar(vanessa). | |
% An entity is a dinosaur if they are living, have tiny arms, and can roar. | |
dinosaur(Entity) :- living(Entity), armsize(Entity, "small"), canroar(Entity). |