Tagged Questions
3
votes
1answer
1k views
Prolog operator precedence and rules matching
I have the next two facts loaded in my prolog interpreter:
foo(U+V,1).
foo(U*V,2).
Now I try the next queries with that results:
foo(x*x+x,R). --> R = 1
foo(x+x*x,R). --> R = 1
...