The Game Of Life

The game of life is a simple cellular automata program. I have no idea who designed it other than it wasn't me. The idea is that each cells contents are derived from the surrounding cells. In this version of the game of life a cell either has life (is black) or does not (is grey). If a cell is live and has either 2 or 3 live cells around it then it stays alive. Otherwise it dies. If a cell has no life in it then it life can be created if there are 3 live cells around it. At least I think they were the original rules. That's what I've implemented. This program was my first java applet.
Index
© David Gentle 2000