This is a simple guide on how to run the Game of Life in Rust.
The Game of Life is a cellular automaton proposed by John Horton Conway.
It's a simple yet fascinating simulation where cells can be alive or dead, and their state changes based on certain rules.
To run the Game of Life in Rust, you need to have Rust installed on your system.
If you haven't installed Rust yet, you can do so by visiting the official Rust installation page.
Once you have Rust installed, you can go to where the project is stored and run:
cargo run
Tip
To close the Game, just hit ALT+F4