Skip to content

Commit

Permalink
markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
JAStanton committed Jan 18, 2012
1 parent 1cc27ac commit e4ab0e8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
##HTML5 / Canvas / Javascript experiment that demonstrates Conway's Game of Life.

#Directions:

Press 's' to start / pause


Want to see more? Look in the source

#More Information:

There are four rules that each pixel must obey. (Source: Wikipedia)

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.

0 comments on commit e4ab0e8

Please sign in to comment.