An open API service indexing awesome lists of open source software.

https://github.com/demkeys/tictactoe-rust

A Tic Tac Toe console game I made for practice, as a beginner in Rust.
https://github.com/demkeys/tictactoe-rust

game rust rustlang tictactoe

Last synced: 3 months ago
JSON representation

A Tic Tac Toe console game I made for practice, as a beginner in Rust.

Awesome Lists containing this project

README

          

# tictactoe-rust
A Tic Tac Toe console game I made for practice, as a beginner in Rust.

---
To use:
- Drag [tictactoe_game.rs](https://github.com/Demkeys/tictactoe-rust/blob/main/tictactoe_game.rs) into your project.
- Add the following code to your ```main.rs ``` file
```
mod tictactoe_game;
use tictactoe_game::game_loop;
```
- Then you can call ```game_loop()``` in your ```main()``` function.