Implementation of Conway's Game of Life in BubbleTea
- Live cell with < 2 neighbors → dies
- Live cell with 2 or 3 neighbors → lives
- Live cell with > 3 neighbors → dies (overpopulation)
- Dead cell with exactly 3 neighbors → becomes alive
- Every 7 seconds: 20% of live cells die
- Every 10 seconds: 30% of dead cells resurrect
git clone https://github.com/vinaykulk621/gol.git
cd gol
go mod tidy
go build -o gol
mv gol /usr/bin/golRun:
golControls:
Ctrl+Corq→ quit- Resize terminal to change grid size
MIT
