I’m new to prolog, I getting error messages when running the following
large_bird(african_fish_eagle).
I’m new to prolog, I getting error messages when running the following
large_bird(african_fish_eagle).
Learn Prolog Now has a gentle introduction to facts and queries.
you do not get: false as the answer?
try this:
assert( large_bird(african_fish_eagle) ).
after that:
large_bird(african_fish_eagle).
should give: true
Wow it worked