Press the green flag to generate a random board. Press space to start and pause. While paused, click on blocks to change their state. Game of Life is a board of square blocks which all follow a set of rules. Each block has two possible states: alive and dead. If alive, a block can only survive if two or three of its eight adjacent blocks are alive, or else it will die. If dead, a block can be born (become alive) IFF three adjacent blocks are alive.
Everything is of my design :)