Created
March 3, 2014 00:34
-
-
Save tarynsauer/9316365 to your computer and use it in GitHub Desktop.
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
| (def x-player-type (atom "human")) | |
| (def o-player-type (atom "human")) | |
| (def player-types ["human" "computer" "ai"]) | |
| (defn current-player-type [board] | |
| (if (= (current-player board) (first piece)) | |
| @x-player-type | |
| @o-player-type)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment