FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-s, --seed Specify the seed number to use as an initial state [default: random]
-i, --input Specify the path/URL for the file to use as an initial state. (used instead of seed)
--width Specify the width of generated universe. [default: terminal width]
--height Specify the width of generated universe. [default: terminal height]
--live-cell Specify the live-cell representation [default: █]
--dead-cell Specify the dead-cell representation [default: ]
-d, --delay Specify the introduced delay between each generation [default: 50]
```
Demo
Development
Install rustup via curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
Install rust stable version for development rustup update
Install rust nightly for testing via rustup install nightly
Clone the repo
Navigate to the rust CLI implementation cd game-of-life/CLI/rust.