2D Conway's Game of Life (Made using Rust + WASM - WebAssembly)
Rules:
You can find the source code for the Rust and Wasm build here - here
The rules are based on the original Game of Life rules. The rules are as follows
- Any live cell with fewer than two live neighbors dies, as if by underpopulation.
- Any live cell with two or three live neighbors lives on to the next generation.
- Any live cell with more than three live neighbors dies, as if by overpopulation.
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.