I had never heard of the Game Of Life until recently, so I got curious and decided to implement it.
(using rust, btw)
The game of life is a game that simulates the evolution of a population of cells. The game is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves.
Further information can be found on the Wikipedia page.
You just need rust installed on your machine.
git clone https://github.com/ilcors-dev/gameoflife
The following command will run the game with a 32x32 grid, where the time between each generation is 3 seconds, and the initial state is random:
cargo run -- --width 32 --height 32 --time-between-updates 3 --random
For further information about the arguments, run:
cargo run -- --help
futher instructions...
Published under MIT
auto-generated by writeme