Go Tac Toe
Go Tac Toe is my version of Tic Tac Toe game that I made in Go. It is a simple game that I made to learn the basics of Go.
The game is simple to play, you play against the computer by making your moves using the coordinate system (x, y). The computer has 3 main components:
- Win: If the computer finds a winning move, he will play it.
- Block: If the computer sees that you have a winning move in the next turn, he will block it.
- Random: The computer makes a random move.