Skip to main content
app icon

GooeyLife

Developer

Mitch Patenaude

About

Conway’s Game of Life is sometimes described as a zero player game. You set up a collection of living cells on an effectively infinite grid, and then they evolve based on a couple of simple rules. A cell that is currently alive will survive if it has 2 or 3 living neighbors (less it dies of loneliness, more it dies of overcrowding), and a dead cell that has exactly 3 living neighbors is “born”. This yields surprisingly complex behaviors, and even be used to comstruct a simple computer (though not a very fast one.)

app screenshot app screenshot app screenshot

Installation

You can install this directly from the source code using the Fyne command as follows:

go install fyne.io/tools/cmd/fyne@latest fyne install github.com/pneumaticdeath/GooeyLife@latest

Or you can download the code directly from git:

git clone https://github.com/pneumaticdeath/GooeyLife