tic_tac_toe_bit_patterns

Crates.iotic_tac_toe_bit_patterns
lib.rstic_tac_toe_bit_patterns
version1.0.0
sourcesrc
created_at2021-07-03 17:42:21.515864
updated_at2021-07-03 17:42:21.515864
descriptionAn implementation of Tic-Tac-Toe
homepage
repositoryhttps://github.com/N-Hoque/tic_tac_toe
max_upload_size
id418276
size32,988
(N-Hoque)

documentation

README

Tic-Tac-Toe

Welcome to Tic-Tac-Toe! This is an implementation of the schoolyard game using only bit patterns, built in Rust.

How to Build

  1. Clone this repository
  2. cargo run --release
  3. (Optional) If you want documentation on what the code does: cargo doc --document-private-items --open
  4. (Optional) If you want to run the tests: cargo test

How to Play

Select a cell by pressing a number from 1-9. Cells are represented left-to-right, bottom-to-top, so:

  • 1-3 is the bottom row
  • 4-6 is the centre row
  • 7-9 is the top row
Commit count: 10

cargo fmt