summaryrefslogtreecommitdiff
path: root/example.pl
diff options
context:
space:
mode:
Diffstat (limited to 'example.pl')
-rw-r--r--example.pl8
1 files changed, 0 insertions, 8 deletions
diff --git a/example.pl b/example.pl
index 74387b1..d9ffc2a 100644
--- a/example.pl
+++ b/example.pl
@@ -1,5 +1,3 @@
-:- dynamic(math/4).
-
math(A,B,C,D) :- D is A + B + C * A.
parentest :-
@@ -28,9 +26,3 @@ curly(A) :- A = {one,two,three}.
length([], zero).
length([Head|Tail], suc(Length)) :-
length(Tail, Length).
-
-:- initialization(could_be_friends(bob, sam)).
-
-:- initialization(length([a,b,c,d], Len)).
-
-:- initialization(length(_,_)). \ No newline at end of file