Conway's Game of Life

Conway's Game of Life follows a small set of rules that have the potential to create some facinating patterns. To read more check out wikipedia for Conway's Game of Life
The rules are:

  1. Any live cell with fewer than two live neighbours dies
  2. Any live cell with two or three live neighbours lives on to the next generation
  3. Any live cell with more than three live neighbours dies
  4. Any dead cell with exactly three live neighbours becomes a live cell

How to play:

  1. Enter the number of columns and rows you want It is recomended you do not exceed 200 of each as this may slow down your browser
  2. Click on any square to toggle it between alive or dead, or click the Randomize-button to automatically toggle 20% of the cells
  3. Click on the start button to start the game, or stop button at ay time to stop a game that's running