Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 399 Bytes

File metadata and controls

12 lines (11 loc) · 399 Bytes

tictactoe-rust

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


To use:

  • Drag 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.