Conway's Game of Life is a simple cellular automa created by John Conway in 1970. Beautiful and intricate patterns are
created from some very simple rules:
- Any live cell with fewer than two live neighbours dies, as if caused by under-population.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overcrowding.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
This is a simple implementation of the GOL in JavaScript and HTML5 Canvas.
Made by Daniel Prilik - 2014