Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 597 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 597 Bytes

Conway's Life of Game

image

Rules:

  • Any live cell with fewer than two live neighbors dies, as if by under population.
  • Any live cell with two or three live neighbors lives on to the next generation.
  • Any live cell with more than three live neighbors dies, as if by overpopulation.
  • Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve