Skip to content

Commit be8a4a0

Browse files
committed
Fix samples/fib_fast.pl
1 parent 281f487 commit be8a4a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples/fib_fast.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
fib(A,B) :-
33
fib_(A,0,1,B).
44

5-
fib_(1,_,A,A).
5+
fib_(1,_,A,A) :- !.
66
fib_(A,B,C,D) :-
77
A > 1,
88
E is A-1,

0 commit comments

Comments
 (0)