% multOfFive2.pl:  Let's try moving the expression out of the head
% and into the body.  Testing will show that doesn't work, either.
% A great way to see how this is failing is to use the trace
% facility.

multipleOf5(0).
multipleOf5(X) :- multipleOf5(X-5).
