r4361: Automatic commit for debian_version_1_0_3-1
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 3 Apr 2003 16:29:52 +0000 (16:29 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 3 Apr 2003 16:29:52 +0000 (16:29 +0000)
io-clim.lisp

index af7300837d9b5fc19539cf3b9502bc34edeeb586..e0146f5bb825bb0133edc486ae57fc19a75795cf 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;  Programer:      Kevin M. Rosenberg
 ;;;;  Date Started:   1 Nov 2001
 ;;;;
-;;;; $Id: io-clim.lisp,v 1.8 2003/04/01 18:07:35 kevin Exp $
+;;;; $Id: io-clim.lisp,v 1.9 2003/04/03 16:29:52 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg 
 ;;;;
                (format stream "Valid Moves~%~A" 
                        (list-to-delimited-string legal-moves #\space)))))
        (when (null (player game))
-         (if (plusp (final-result game))
-             (format stream "Black wins by ~d!" (final-result game))
-           (format stream "White wins by ~d!" (- 0 (final-result game)))))))))
+         (cond
+           ((zerop (final-result games))
+            (format stream "It's a draw!"))
+           ((plusp (final-result game))
+             (format stream "Black wins by ~d!" (final-result game)))
+           (t
+            (format stream "White wins by ~d!" (- 0 (final-result game))))))))))