Conway's Game of Life
An interactive implementation of Conway's Game of Life using Svelte and Tailwind CSS.
Features
- Responsive grid
- Adjustable simulation speed
- Pre-built patterns (Glider, Pulsar)
- Status display showing grid dimensions and generation count
About Conway's Game of Life
Conway's Game of Life is a cellular automaton devised by mathematician John Conway in 1970. It follows simple rules:
- Any live cell with 2 or 3 live neighbors survives
- Any dead cell with exactly 3 live neighbors becomes alive
- All other cells die or remain dead
These simple rules create complex emergent patterns and behaviors.
License
