Live
This is an incremental stepping version of Conway's game of Life. Clicking on the Go button will randomly fill the field with cells (.5 probably of fillage per cell). Clicking the Next button will step forward one generation. At each generation stepping, a full cell will only survive if it has 2 or 3 neighbors, and an empty cell will only be filled if it has exactly 3 neighbors. Also, in this version at each generation stepping there is a .5 probability that a cell will be created randomly on the board. Note that number of neighbors is calculated for each cell before changes are made.