Game of Life

Created by mathematician John Conway in 1970

The Rules

Every cell interacts with its 8 neighbors. Each generation follows these simple rules:

3

Birth

Dead cell with exactly 3 neighbors becomes alive

2-3

Survival

Live cell with 2 or 3 neighbors survives

×

Death

Live cell with <2 (loneliness) or >3 (overcrowding) neighbors dies

Built with Rust, WebAssembly, and Tailwind CSS