package tictactoe;

public class TicTacToeTester {
  public static void main(String[] args) {
    TicTacToe game = new TicTacToe();
    System.out.println(game);
    game.move(1,1);
    game.move(1,1);
    game.move(2,2);
    game.move(1,0);
    game.move(2,1);
    System.out.println(game);
    game.move(1,2);
    System.out.println(game);
    System.out.println(game.move(2,0));
  }
}
