diff options
Diffstat (limited to 'example.pl')
-rw-r--r-- | example.pl | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,11 @@ math(A,B,C,D) :- D is A + B + C * A. +parentest :- + 1 + 2 * 3 + 4. +parentest :- + (0 * (1 + 2) * 3) * 3 + 4. + true. likes(bob, ice). |