https://github.com/zewebdev1337/go-tictactoe
Golang reimplementation of the CLI version of nim-tictactoe
https://github.com/zewebdev1337/go-tictactoe
cli-game go golang language-conversion minmax reimplementation tictactoe
Last synced: 11 months ago
JSON representation
Golang reimplementation of the CLI version of nim-tictactoe
- Host: GitHub
- URL: https://github.com/zewebdev1337/go-tictactoe
- Owner: zewebdev1337
- Created: 2024-10-17T04:50:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T04:53:05.000Z (over 1 year ago)
- Last Synced: 2025-02-07T11:16:41.825Z (about 1 year ago)
- Topics: cli-game, go, golang, language-conversion, minmax, reimplementation, tictactoe
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-tictactoe
A go reimplementation of the CLI version of [nim-tictactoe](https://github.com/xmonader/nim-tictactoe).
## Usage
```
TicTacToe 0.1.0 (MinMax version)
Allowed arguments:
-h | --help : show help
-a | --ai : AI player [X or O]
-l | --difficulty : difficulty level (0-8)
```
Example:
```
./TicTacToe -a X -l 3
```
This will start a game where the AI player is 'X' and the difficulty level is set to 3.