diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..299a9e707931aeeb8b7874c442168cf4c8366460 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +This repository is a rust simple board game engine used as a live +coding support for an rust introduction seminar + +To build and test it + +``` +cargo test +cargo run +``` + + diff --git a/src/main.rs b/src/main.rs index 52dfb1c3726010dc9653ce61e5f5d216ab45d8de..cf1077f7428e6d8d5e8a2763206b7db50ecb54b4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,8 +44,8 @@ where } fn main() { - //let board = TicTacToe::new(); - let board = board::coin_flip::FlipCoin::new(42); + let board = TicTacToe::new(); + //let board = board::coin_flip::FlipCoin::new(42); play(board); }