Created
August 7, 2014 01:28
-
-
Save pumpkincouture/c6b0e83f2ce33881c5bf 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
computer_player = ComputerPlayer.new | |
human_player = HumanPlayer.new | |
ui = UserInterface.new | |
board = Board.new(ui) | |
new_example = Example.new | |
new_game = Game.new(computer_player, human_player, ui, board, new_example) | |
new_game.start | |
until new_game.game_over? | |
new_game.play_game | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment