Prolog using Examples – Part 5

The follow is a continuation of the previous posting “Prolog using Examples – Part 4” Example 1: Check the prefix of a list. /* Base case */ /* When the list of prefix checked is empty means that we stop checking */ prefix([],_). /* Recursive case */ /* Both head of the list must be […]

Share