Implementation of Conway's Game of Life.
Generate 2d Grid
of given size that are empty or contain a random distribution of dead or alive populations.
update_states
is then called on the Grid
to generate the next grid state based on the rules of Conway's Game of Life.
Package also contains an example Text User Interface (TUI) leveraging gridlife
with ratatui
, which can be used to run random simulations.
cargo run --features="build-binary"