# pre-load a few cells with known colors for testing purposes data.board[0][0] = "red" # top-left is red data.board[0][data.cols-1] = "white" # top-right is white data.board[data.rows-1][0] = "green" # bottom-left is green data.board[data.rows-1][data.cols-1] = "gray" # bottom-right is gray
David Kosbie |