/*
    Tests constructor and toString method
*/

public class TicTacToe1 {
    private static TicTacToeBoard1 board = new TicTacToeBoard1();

    public static void main (String[] args){
        board = new TicTacToeBoard1();
        System.out.println(board);
    }
}
