Skip to content

Instantly share code, notes, and snippets.

View kaizhelam's full-sized avatar
💭
I may be slow to respond.

Lam Kai Zhe kaizhelam

💭
I may be slow to respond.
View GitHub Profile
@osoleve
osoleve / TicTacToe.lisp
Created October 30, 2010 18:53
A simple two player textual implementation of Tic Tac Toe.
;;;; 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")