Skip to content
Snippets Groups Projects
Commit 5a4507a3 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Fix board display

parent e0fc4238
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,10 @@ fn display(board: TicTacToe) {
board.board[row * 3 + 1],
board.board[row * 3 + 2]
);
if row == 0 || row == 1 {
println!("---+---+---");
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment