In this repo I explore some implementations of the Conway's Game Of Life algorithm in different languages.
Rules (rewritten for clarity):
- Any live cell with two or three live neighbors survives.
- Any dead cell with three live neighbors becomes a live cell.
- All other live cells die.
- All other dead cells stay dead.
Languages and implementation counts:
- Ruby: 1
- Rust: 2