tic_tac_toe_bit_patterns 1.0.0

An implementation of Tic-Tac-Toe
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented0 out of 1 items with examples
  • Size
  • Source code size: 32.46 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.31 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • N-Hoque/tic_tac_toe
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • N-Hoque

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