From 57a675acaa1ed0c1ecff34d5f198745fa3cace36 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 6 Nov 2012 11:32:18 +0100 Subject: tit4tat.pl: Halt programm after finish --- tit4tat.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tit4tat.pl b/tit4tat.pl index 4614314..528d915 100644 --- a/tit4tat.pl +++ b/tit4tat.pl @@ -54,4 +54,4 @@ loop(Hist, PayedA, PayedB) :- write('Type c,d or e to end: '), read(Choice), do(Choice, Hist, PayedA, PayedB). -start :- loop([], [], []). +start :- loop([], [], []),halt. -- cgit