This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; tictactoe.lisp | |
;;;; | |
;;;; Andrew Levenson | |
;;;; 10/27/10 | |
;;;; | |
;;;; Simple two player ASCII Tic Tac Toe Game | |
;;; First player is X, so initialize the marker to X | |
(setf *marker* :X) | |
(setf *player* "Player 1") |