This is a simple maze-generator program made in rust
In order to run this project, first make sure you have the rust programming language properly installed. If so, you can run this project with the following command:
cargo runIf you wanna build this project to production instead of just running it, you can do so by using cargo again:
cargo build --releaseIt will compile the program and generate an optimized executable of it in the
target/release/maze-rs location.
Now you can run it directly:
./target/release/maze-rsHave fun! 🎉
